ソース情報
- リポジトリ
- joshka0/foxctl
- ソースの最終更新活動
- 2026年4月14日 12:42
- 検出された SKILL.md の言語
- 英語
- スター
- 3
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/joshka0/foxctl --skill foxctl-workflowコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Protocol for participant agents in transport-first rooms: join, check membership, handle inbox/tasks, reply durably, and escalate.
Operate inside an existing foxctl room: orient from status or inbox, manage tasks correctly, escalate, and close with durable updates.
Run durable multi-agent rooms with transport-first delivery, participant state, room tasks, and optional tmux or zellij viewers.
| name | foxctl-workflow |
| description | Execute and manage workflow pipelines that chain multiple foxctl skills |
Chain skills into pipelines with dependencies, parallel execution, loops, and conditionals.
foxctl workflow run <name> --input '{"key": "value"}'
foxctl workflow list
foxctl workflow validate <name>
apiVersion: foxctl/v1
kind: Workflow
metadata:
name: my-workflow
inputs:
- name: path
type: string
required: true
steps:
- id: find
skill: fs/find
input: {path: "{{.inputs.path}}", pattern: "*.go"}
- id: analyze
skill: code/symbols
loop: {over: "{{.find.data.files}}", as: file}
parallel: 4
input: {path: "{{.file}}"}
{{.inputs.path}}, {{.stepId.data.field}}loop: {over: "{{.list}}", as: item} with parallel: Nif: "{{.inputs.deep}}"depends_on: [step1, step2]on_error: continue|fail|retry, max_retries: 3| Workflow | Description |
|---|---|
pre-impl-analysis | Find files, symbols, complexity |
code-review | Complexity + TODO scanning |
lsp-analysis | Definition, references, call hierarchy |
Full docs: ~/.foxctl/share/configs/skills/foxctl-workflow/Skill.md