Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ commands/flow-code/*.md → Slash command definitions (user-invocable entry poi
skills/*/SKILL.md → Skill implementations (loaded by Skill tool, never Read directly)
agents/*.md → Subagent definitions (research scouts, worker, plan-sync, etc.)
bin/flowctl → Rust binary (built from flowctl/ workspace)
flowctl/ → Rust Cargo workspace (4 crates: core, db, service, cli)
flowctl/ → Rust Cargo workspace (2 crates: core, cli)
hooks/hooks.json → Ralph workflow guards (active when FLOW_RALPH=1)
docs/ → Architecture docs, CI examples
```
Expand Down Expand Up @@ -52,7 +52,7 @@ bash scripts/ralph_e2e_short_rp_test.sh

All tests create temp directories and clean up after themselves. They must NOT be run from the plugin repo root (safety check enforced).

**Storage runtime**: State is stored in JSON/JSONL files in the `.flow/` directory, readable by any tool. The `flowctl-db` crate provides synchronous file-based storage with no external database dependencies.
**Storage runtime**: All state is JSON/JSONL files in `.flow/`, readable by any tool (MCP, Read, Grep). No database, no async runtime. The `json_store` module in `flowctl-core` handles all file I/O.

Comment on lines 53 to 56
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doc update removes the storage DB/async references, but the PR also deletes docs/references/* docs that are still referenced by skills (e.g., skills/flow-code-cicd/SKILL.md and skills/flow-code-performance/SKILL.md). Please update those skill links (or provide replacement docs) to avoid broken internal references.

Copilot uses AI. Check for mistakes.
## Code Quality

Expand Down
2 changes: 1 addition & 1 deletion docs/adr-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Use `docs/decisions/` with sequential numbering:

```
docs/decisions/
ADR-001-use-libsql-for-storage.md
ADR-001-json-file-based-storage.md
ADR-002-wave-checkpoint-execution-model.md
ADR-003-teams-file-locking-protocol.md
```
Expand Down
152 changes: 0 additions & 152 deletions docs/references/performance-checklist.md

This file was deleted.

141 changes: 0 additions & 141 deletions docs/references/security-checklist.md

This file was deleted.

Loading