Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

fis-architecture金融体系架构

Agent Skill

fis-architecture 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

27,613

周安装

1,128

GitHub Stars

3

下载量

8,934
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fis-architecture(金融体系架构)
来源仓库:https://github.com/muselinn/fis-architecture
安装命令:
openclaw skills install fis-architecture
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install fis-architecture

简介

fis-architecture 通过 JSON 票证协调多代理工作流程。

  • 在 CyberMao 与 Worker 工程师之间分配任务。
  • 提升分布式智能体系统的协同效率。fis-architecture 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install fis-architecture。
  • 任务委派需定义清晰边界与失败回退策略。

SKILL.md

name
fis-architecture
description
Orchestrate multi-agent workflows with JSON tickets and A2A coordination. Use when delegating tasks between CyberMao (Main) and Worker agents (Engineer/Researcher/Writer).
metadata
openclaw
emoji
🏗️
always
false
homepage
https://github.com/linn/fis-architecture

FIS Architecture 3.2 Pro

Multi-agent workflow framework for CyberMao (Main) → Worker coordination using JSON tickets and Discord Forum threads.


When to Use This Skill

Use FIS when:

  • CyberMao (Main) needs to delegate complex tasks to specialized Workers
  • A task requires domain expertise (coding, research, writing)
  • You need to track task status across multiple sessions
  • Multi-step workflows require coordination between agents

Agent Roles:

RoleAgent IDExpertise
ArchitectmainCoordination, task routing, user communication
CodingengineerPython, gprMax, algorithms, data analysis
ResearchresearcherTheory, literature, simulation planning
WritingwriterDocumentation, LaTeX, visualization

Discord Bot Permissions (REQUIRED)

Each agent's Discord bot must have these permissions configured in the Discord server. Without them, Thread creation and messaging will fail silently.

Required Bot Permissions:

  • Send Messages — reply in channels and threads
  • Send Messages in Threads — post inside Forum threads
  • Create Public Threads — create new Forum posts programmatically
  • Read Message History — read thread context
  • Embed Links — send rich embeds in reports
  • Attach Files — upload deliverables

How to configure:

  1. Go to Discord Server Settings → Roles
  2. For each bot role (CyberMao, Researcher, Engineer, Writer), enable the permissions above
  3. Ensure each Forum channel grants these permissions to the relevant bot roles

Verify with:

{ "action": "threadCreate", "channelId": "<forum_channel_id>", "name": "Permission Test" }

If the bot lacks permissions, the discord tool will return an error.


Tool Configuration

ToolPurposePath
fis_lifecycle_pro.pyTicket lifecycle (create/status/complete/list)scripts/fis_lifecycle_pro.py
fis_coordinator.pyGenerate delegation templates (CyberMao only)scripts/fis_coordinator.py
fis_worker_toolkit.pySpawn sub-agents, generate reports (Workers only)scripts/fis_worker_toolkit.py

Python Environment: Requires Python 3.8+ with standard library only (no external dependencies).


Core Workflow

Step 1: CyberMao Delegates Task

# Generate ticket + Thread template + A2A command
python3 scripts/fis_coordinator.py delegate \
  --agent engineer \
  --task "Implement GPR signal filter" \
  --forum coding

Output:

  • Ticket ID: TASK_YYYYMMDD_XXX_AGENT
  • Thread template content
  • sessions_send command to notify Worker

Step 2: CyberMao Creates Forum Thread

Use the discord tool to create a Thread in the appropriate Forum channel:

{
  "action": "threadCreate",
  "channelId": "<forum_channel_id>",
  "name": "TASK_xxx: Implement GPR signal filter"
}

The response returns the new Thread ID. Then notify the Worker with the Thread ID:

python3 scripts/fis_coordinator.py notify \
  --ticket-id TASK_xxx \
  --thread-id <new_thread_id>

Execute the generated sessions_send command to notify the Worker.

Step 3: Worker Executes Task

# Check ticket
python3 scripts/fis_lifecycle_pro.py list

# Update status
python3 scripts/fis_lifecycle_pro.py status \
  --ticket-id TASK_xxx --status doing

# Optional: Spawn sub-agent for complex sub-tasks
python3 scripts/fis_worker_toolkit.py spawn \
  --parent-ticket TASK_xxx \
  --subtask "Analyze algorithm complexity"

Worker replies in the Forum Thread using the discord tool:

{
  "action": "threadReply",
  "channelId": "<thread_id>",
  "content": "Task received. Starting execution."
}

Step 4: Worker Reports Completion

# Generate completion report
python3 scripts/fis_worker_toolkit.py report \
  --parent-ticket TASK_xxx \
  --summary "Successfully implemented GPR filter" \
  --deliverables filter.py test_results.json

Execute the generated sessions_send command to notify CyberMao.

Step 5: CyberMao Finalizes

# View report
python3 scripts/fis_coordinator.py report --ticket-id TASK_xxx

# Mark complete
python3 scripts/fis_lifecycle_pro.py complete --ticket-id TASK_xxx

Archive the Thread and report to User in #daily-chat.


Architecture

User/Linn
    ↓
CyberMao (Main) - Architect, coordinator
    ↓ sessions_send + discord threadCreate
Worker (Engineer/Researcher/Writer) - Domain experts
    ↓ (optional) sessions_spawn mode="run"
SubAgent (temporary, background) - Complex sub-tasks

Key Principles:

  1. A2A via sessions_send — Main calls Workers, Workers report back
  2. Ticket tracking — All tasks have JSON tickets in fis-hub/
  3. Programmatic Thread creation — CyberMao creates Forum Threads via discord tool's threadCreate action
  4. SubAgent background modesessions_spawn with mode="run", no new Thread

Commands Reference

fis_lifecycle_pro.py

# Create ticket
python3 scripts/fis_lifecycle_pro.py create \
  --agent engineer --task "Description" --channel-type coding

# Update status (todo/doing/done)
python3 scripts/fis_lifecycle_pro.py status \
  --ticket-id TASK_xxx --status doing --note "Progress update"

# Mark complete
python3 scripts/fis_lifecycle_pro.py complete --ticket-id TASK_xxx

# List active tickets
python3 scripts/fis_lifecycle_pro.py list

# Archive old tickets
python3 scripts/fis_lifecycle_pro.py archive

fis_coordinator.py (CyberMao only)

# Delegate and generate templates
python3 scripts/fis_coordinator.py delegate \
  --agent researcher --task "GPR theory analysis" --forum theory

# Notify Worker after Thread is created
python3 scripts/fis_coordinator.py notify \
  --ticket-id TASK_xxx --thread-id <discord_thread_id>

# View detailed report
python3 scripts/fis_coordinator.py report --ticket-id TASK_xxx

fis_worker_toolkit.py (Workers only)

# Spawn sub-agent (background, no Thread)
python3 scripts/fis_worker_toolkit.py spawn \
  --parent-ticket TASK_xxx --subtask "Complex sub-task description"

# Generate completion report
python3 scripts/fis_worker_toolkit.py report \
  --parent-ticket TASK_xxx \
  --summary "Completion summary" \
  --deliverables file1.py file2.json

Channel Mapping

CategoryForum ChannelWorkerTool Flag
RESEARCH🔬-theory-derivation@Researcher--forum theory
RESEARCH📊-gpr-simulation@Researcher--forum simulation
DEVELOPMENT💻-coding@Engineer--forum coding
WRITING📝-drafts@Writer--forum drafts

Error Handling

If ticket creation fails:

  • Check Python version: python3 --version (need 3.8+)
  • Verify fis-hub/ directory exists and is writable
  • Check disk space

If Thread creation fails:

  • Verify the bot has Create Public Threads permission in the target Forum channel
  • Check that channelId points to a Forum channel (not a regular text channel)
  • Confirm the bot is a member of the server with correct roles

If A2A fails:

  • Verify openclaw.json has agentToAgent.enabled: true
  • Confirm Worker agent ID is in allow list
  • Check Worker session is active

If sub-agent spawn fails:

  • Ensure mode="run" is used (not mode="session")
  • Verify task description is clear and specific

Quality Standards

  1. One Task = One Ticket — Never reuse ticket IDs
  2. Status Updates Required — Workers must update status (TODO → DOING → DONE)
  3. Thread Per Task — Each task gets its own Forum Thread (created via threadCreate)
  4. A2A Confirmation — Always confirm receipt via sessions_send
  5. Archive After Complete — Archive Thread after task completion

Configuration

Required in ~/.openclaw/openclaw.json:

{
  "tools": {
    "agentToAgent": {
      "enabled": true,
      "allow": ["main", "researcher", "engineer", "writer"]
    }
  }
}

Testing

Quick A2A Test

# Test connectivity
sessions_send(sessionKey="engineer", message="A2A test")

Thread Creation Test

{ "action": "threadCreate", "channelId": "<forum_channel_id>", "name": "FIS Test Thread" }

Full Workflow Test

# 1. Create task
python3 scripts/fis_coordinator.py delegate \
  --agent researcher --task "Test task" --forum theory

# 2. Create Forum Thread via discord tool threadCreate

# 3. Notify Worker with Thread ID
python3 scripts/fis_coordinator.py notify \
  --ticket-id TASK_xxx --thread-id <thread_id>

# 4. Execute A2A command

# 5. Complete
python3 scripts/fis_lifecycle_pro.py complete --ticket-id TASK_xxx

*FIS 3.2 Pro | Multi-Agent Workflow Framework*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.37%
按下载量换算7,270

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install fis-architecture 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills