-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.json
More file actions
92 lines (92 loc) · 4.42 KB
/
Copy pathweb.json
File metadata and controls
92 lines (92 loc) · 4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"displayName": "Flow",
"author": "kaiomp",
"authorUrl": "https://github.com/kaiomp",
"categories": [
"Productivity",
"Workflow",
"DevOps"
],
"tagline": "An opinionated AI dev workflow for Claude Code — session lifecycle, orchestrated agents, and deep reviews that work in any repo.",
"description": "Flow packages a battle-tested workflow for shipping software with Claude Code. It wires up thirteen slash commands, a focused reviewer agent on top of Claude Code's built-in agents, and a handful of hooks so every session starts, runs, and ships consistently — while staying stack-agnostic by reading project specifics from a per-repo config.md.",
"features": [
"Thirteen slash commands covering the full session lifecycle: init and uninstall, continue (cold-starts or resumes), status (a read-only where-am-I), pause (including a land mode that ships), plus autonomous autopilot",
"One focused reviewer agent, layered on Claude Code's built-in Explore and general-purpose agents plus the writing-plans skill, coordinated by a main orchestrator",
"Autopilot: an autonomous multi-sprint loop that spawns a non-overlapping agent team, deep-reviews, ships, and self-generates work via audit",
"Project-agnostic: dev/lint/test/build commands come from your repo's .flow/config.md",
"Deterministic shell helpers + a pause-time verification gate (config key `stop_check`: ask, always, or never) that runs your build/test commands at deliberate push points",
"Issue tracking that adapts to your backend (GitHub Issues, Linear, or local files)",
"Deep-review mode that fans out parallel reviewers and loops fixes until clean",
"Secret guards on reads, writes, and shell; auto-saved cross-session memory; doc drift-check at pause"
],
"useCases": [
"Solo developers who want a repeatable AI workflow across many repos",
"Small teams standardizing how they ship features with Claude Code",
"Codebases that want consistent reviews, issue hygiene, and CI checks before push",
"Anyone tired of re-explaining their stack to Claude on every session"
],
"skills": [
{
"name": "init",
"description": "Bootstrap a new project with .flow/config.md and CLAUDE.md tailored to your stack."
},
{
"name": "uninstall",
"description": "Remove the files init created, so you can start clean or re-init. Dry-run by default; asks before dropping session state."
},
{
"name": "continue",
"description": "Resume the last session from .flow/session-progress.md exactly where you left off, or start a new one if none exists."
},
{
"name": "status",
"description": "Read-only \"where am I / what's running / what next\" — git state, in-flight agents, PR and CI. Changes nothing."
},
{
"name": "pause",
"description": "Save WIP and shut down agents cleanly; 'land' mode finalizes: CI checks, issue closing, commit, push, and ff-merge."
},
{
"name": "audit",
"description": "Scan the codebase for smells, security holes, stale docs, and dead code; file selected findings as issues."
},
{
"name": "cleanup",
"description": "Run format and lint with auto-fix; report what remains."
},
{
"name": "health",
"description": "Verify your workflow setup: config, hooks, required commands, PM backend connectivity."
},
{
"name": "deep-review",
"description": "Fan out parallel reviewers over the current diff, then loop fixes until BREAKS and SECURITY are zero."
},
{
"name": "questions",
"description": "Answer, inspect, or edit the WIP-limited open-question queue"
},
{
"name": "flawz",
"description": "Pressure-test a plan, spec, or design for real flaws before you act on it."
},
{
"name": "autopilot",
"description": "Autonomous multi-sprint loop: pick issues, spawn a non-overlapping agent team, deep-review, push, and self-generate work via audit when issues run out."
},
{
"name": "issue",
"description": "Report a flow bug or feature request as a GitHub issue, from any project. Checks your installed version first so you are not reporting an already-fixed bug."
}
],
"sources": [
{
"label": "Claude Code plugin docs",
"url": "https://docs.claude.com/en/docs/claude-code/plugins"
},
{
"label": "flykit marketplace",
"url": "https://github.com/flykit-cc/flow"
}
]
}