소스 정보
- 저장소
- joshka0/foxctl
- 최근 소스 활동
- 2026년 4월 14일 12:42
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/joshka0/foxctl --skill foxctl-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | foxctl-workflow |
| description | Execute and manage workflow pipelines that chain multiple foxctl skills |
Chain multiple foxctl skills into automated pipelines with dependencies, parallel execution, loops, and conditionals.
# Execute a workflow
foxctl workflow run <name-or-path> --input '{"key": "value"}'
# List available workflows
foxctl workflow list
# Validate without executing
foxctl workflow validate <name>
# Show workflow details
foxctl workflow show <name>
Workflows are YAML files in workflows/ or ~/.foxctl/workflows/:
apiVersion: foxctl/v1
kind: Workflow
metadata:
name: my-workflow
description: "What this workflow does"
inputs:
- name: path
type: string
required: true
- name: pattern
default: "*.go"
steps:
- id: find
skill: fs/find
input:
path: "{{.inputs.path}}"
pattern: "{{.inputs.pattern}}"
- id: analyze
skill: code/symbols
loop:
over: "{{.find.data.files}}"
as: file
parallel: 4
input:
path: "{{.file}}"
- id: report
skill: workflow/aggregate
depends_on: [analyze]
input:
data: "{{.analyze.data}}"
outputs:
- name: file_count
value: "{{len .find.data.files}}"
Access inputs and step results:
input:
path: "{{.inputs.path}}" # Workflow input
files: "{{.find.data.files}}" # Previous step's data
status: "{{.find.status}}" # Step status
Iterate over arrays with optional parallelism:
- id: process
skill: code/symbols
loop:
over: "{{.find.data.files}}"
as: file
parallel: 4 # Max concurrent executions
input:
path: "{{.file}}"
Skip steps based on conditions:
- id: deep_analysis
skill: lsp/gopls
if: "{{.inputs.deep}}"
input:
operation: call_hierarchy
Explicit or inferred from template references:
- id: report
depends_on: [step1, step2] # Explicit
# Or automatic via {{.step1.data}}
- id: risky_step
skill: external/api
on_error: continue # fail (default), continue, retry
timeout: "30s"
max_retries: 3
retry_delay: "1s"
len, first, last, index, slicekeys, values, filter, map, flatMapflatten, unique, sort, reverseappend, concatupper, lower, trim, replace, split, joincontains, hasPrefix, hasSuffixbase, dir, ext, clean, joinPathget (nested path access), pluck, pick, omit, merge, hasKeydefault, coalesce, ternary, emptyeq, ne, lt, le, gt, geand, or, notadd, sub, mul, div, mod, max, mintoJSON, fromJSON, toString, toInt, toBool| Workflow | Description |
|---|---|
pre-impl-analysis | Find files, extract symbols, check complexity |
code-review | Complexity analysis + TODO scanning |
lsp-analysis | Definition, references, call hierarchy |
batch-process | Parallel file processing with retries |
foxctl workflow run pre-impl-analysis --input '{"path": "./internal", "pattern": "*.go"}'
foxctl workflow run code-review --input '{"path": ".", "lang": "go"}' -v
foxctl workflow run my-workflow --input '{}' --dry-run
import "github.com/joshka0/foxctl/internal/runtime/orchestration/workflow"
// Using the engine
engine := workflow.NewEngine()
result, err := engine.Run(ctx, "my-workflow", map[string]any{
"path": "./src",
})
// Using the builder
wf, _ := workflow.NewBuilder("my-workflow").
Input("path", "string", workflow.Required()).
Step("find", "fs/find", map[string]any{
"path": "{{.inputs.path}}",
}).
Step("analyze", "code/symbols", map[string]any{
"path": "{{.find.data.files}}",
}).Loop("{{.find.data.files}}", "file").Parallel(4).
Build()