Flowguard
个人 Agent Skills:健康、阅读、写作、日记、Keep 等脚本与说明
npx -y skills add zhijunio/skills --skill flowguardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Guard long, ambiguous, or stateful AI-agent work from drift. Use for multi-step implementation, compaction at phase boundaries, task contracts, handoff/resume, or work spanning many tool calls, files, or sessions — not single-shot article writing, topic learning, or codebase audit.
SKILL.md
2.7 KB, as published. Nobody here has run it
Flowguard
Lifecycle guard for work that can drift, lose context, or compound errors. Routes first, verifies live state, runs bounded loops, leaves resumable handoff.
Does not replace the user's chosen workflow (writing, learning, audit, etc.) — only wraps execution discipline.
Operating contract
- No long loop until route, scope, and stop conditions are explicit.
- Memory and handoffs are hints until git, files, runtime, or remote state are verified.
- No completion claims without fresh verification evidence.
- No scope expansion or destructive surfaces without re-route.
Route first
| Route | Use when |
|---|---|
execute_direct | Goal, constraints, done-when clear; small scope |
plan_first | Many files/sessions, migrations, risky sequencing |
clarify_first | Missing goal, files, constraints, or destructive permission |
Wrong assumption → large rewrite, prod risk, or data loss → clarify_first.
Startup
- Search for existing plans, artifacts, or prior work.
- Load applicable
AGENTS.mdfor editable paths. - Snapshot (from installed flowguard dir):
/path/to/flowguard/scripts/workflow_state_snapshot.sh /path/to/target/repo
- Verify cwd, branch, dirty files if resuming — do not trust memory alone.
- Capture goal, context, constraints, done-when; clarify if risky gaps.
Preflight
State compact preflight (references/state-contract.md § Preflight). High-risk kickoff → expand with references/task-contract.yaml.
Phase work (load on demand)
| Phase | Read |
|---|---|
| Context compaction | references/strategic-compact.md |
| Prioritize findings / regression | references/scoring-matrix.md, references/review-template.md |
| Implement loop | references/execution-loop.md |
| Handoff / resume | references/state-contract.md |
Validation
bash -n flowguard/scripts/workflow_state_snapshot.sh
Resources
scripts/workflow_state_snapshot.sh— read-only repo snapshotreferences/state-contract.md— preflight, checkpoint, handoff, resumereferences/strategic-compact.md— boundary compactionreferences/execution-loop.md— loop, verification, multi-agentreferences/task-contract.yaml— high-risk kickoff checklistreferences/scoring-matrix.md— finding priorityreferences/review-template.md— regression template