Session lifecycle and service-mapping plugin for Claude Code
npx claudepluginhub spencer-life/flintflowStructured project workflow with ground-truth data verification, enhanced session lifecycle, and multi-stage subagent execution. Tracks project state across sessions, verifies database accuracy against human-confirmed values, and adds pre-flight checks and data verification stages to development workflows.
A Claude Code plugin for structured project workflows with ground-truth data verification, session lifecycle management, and multi-stage subagent execution.
Claude Code is great at writing code, but complex projects — especially database-backed ones — have recurring pain points:
flintflow fixes these by adding ground-truth verification, persistent project state, and a structured execution pipeline.
| Skill | Description |
|---|---|
/project-init | Interactive scaffold — interviews you about your project, generates PROJECT_STATE.md, VERIFICATION.md, and verification queries. Works on new and existing projects. |
/data-verify | Runs ground-truth verification against your database. Compares actual values to human-authored expected values in VERIFICATION.md. Refuses to generate its own expected values. |
/handoff | Enhanced context transfer with data state section. Gathers from conversation, git, and database state. |
/catchup | Resume from a handoff. Reads PROJECT_STATE.md + VERIFICATION.md, flags data failures, suggests fixes before proceeding. |
/wrap-up | End-of-session checklist: verify data → commit (never push) → update project state → capture learnings → review. |
/codex | Codex CLI (GPT-5.4) integration. Subcommands: exec, review, research, compare. Cross-model verification at phase boundaries. |
/subagent-driven-development | Full execution pipeline: Pre-flight → Implement → Spec Review → Code Quality → Data Verify → Codex Auto-Review. All subagent prompts embedded. |
| Agent | Description |
|---|---|
pre-flight | Checks scope conflicts, missing context, data safety, and dependencies before implementation starts. |
data-verifier | Verifies database values against VERIFICATION.md ground-truth. Verdicts: APPROVED, REJECTED, INCONCLUSIVE, BLOCKED. |
integration-reviewer | Reviews branch merges after parallel sessions. Checks git conflicts, logic conflicts, data conflicts, and schema conflicts. |
| Hook | Event | Description |
|---|---|---|
session-start.sh | SessionStart | Git snapshot (branch, staged/unstaged counts, recent commits, stash) + handoff file detection with staleness warnings. |
| Script | Description |
|---|---|
codex-delegate.sh | Bash wrapper for Codex CLI with subcommands (exec, review, research, compare), timeout handling, git worktree support, and post-write lint/format integration. |
A human-authored file of expected values. Claude and Codex are both forbidden from generating these — only humans establish ground truth. Example:
## Premium Rates
| Carrier | Product | Age | Gender | Tobacco | Expected |
|---------|---------|-----|--------|---------|----------|
| PL | IUL | 45 | M | NS | $247.50 |
| ANICO | FE | 55 | - | NS | $32.50 |
Persistent project memory that survives across sessions. Tracks architecture decisions, data accuracy scores, active work streams, parallel session boundaries, and known issues.
Pre-flight → Implement → Spec Review → Code Quality → Data Verify → Codex Review
Every stage has a clear verdict. Any REJECTED verdict blocks progression. Data verification uses VERIFICATION.md — not AI-generated expectations.
# Copy to plugins directory
cp -r flintflow ~/.claude/plugins/flintflow
# Delete skills that flintflow replaces (if you have them)
rm -rf ~/.claude/skills/{catchup,handoff,wrap-up,codex,subagent-driven-development}
# Copy agents to global agents folder
cp ~/.claude/plugins/flintflow/agents/*.md ~/.claude/agents/
# Copy codex-delegate.sh to hooks directory
cp ~/.claude/plugins/flintflow/scripts/codex-delegate.sh ~/.claude/hooks/codex-delegate.sh
chmod +x ~/.claude/hooks/codex-delegate.sh
# Add alias so flintflow loads every session
echo 'alias cc="claude --plugin-dir ~/.claude/plugins/flintflow"' >> ~/.zshrc
source ~/.zshrc
# Start Claude Code with flintflow
cc
# Initialize a new or existing project
/project-init
# After implementation work, verify data
/data-verify
# End of session
/wrap-up
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.