Skip to content

Commit 889e40c

Browse files
committed
Remove public tool-origin artifacts
1 parent b10fdb4 commit 889e40c

25 files changed

Lines changed: 169 additions & 429 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ jobs:
5353
"crypto"
5454
"infra/scripts"
5555
"infra/scripts/setup-worktrees.ps1"
56-
"inbox/claude-code"
57-
"inbox/old-prompts"
5856
"inbox/unsorted"
5957
".github/pull_request_template.md"
6058
".github/ISSUE_TEMPLATE/feature.yml"

.gitignore

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,7 @@ crypto/node_modules/
2222
/FlowMemory/
2323
apps/dashboard/flowmemory-release.keystore
2424

25-
# Keep generated/internal launch artifacts out of the public repo.
26-
docs/agent-runs/**
27-
!docs/agent-runs/
28-
!docs/agent-runs/README.md
29-
docs/agent-goals/**
30-
!docs/agent-goals/
31-
!docs/agent-goals/README.md
25+
# Keep generated/internal local artifacts out of the public repo.
3226
inbox/unsorted/**
3327
!inbox/unsorted/
3428
!inbox/unsorted/README.md

AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# FlowMemory Agent Instructions
1+
# FlowMemory Contributor Instructions
22

3-
These instructions apply to every agent, assistant, script, and human operating in this repository.
3+
These instructions apply to every contributor, operator, script, and automation lane working in this repository.
44

55
## Source Of Truth
66

@@ -22,7 +22,7 @@ These instructions apply to every agent, assistant, script, and human operating
2222
## HQ Program Management
2323

2424
- Use `docs/ISSUE_BACKLOG.md` to understand issue dependencies and milestone placement.
25-
- Use `docs/AGENT_PROMPTS.md` when launching or briefing a worktree agent.
25+
- Use `docs/WORKTREE_ASSIGNMENTS.md` when assigning or briefing worktree lanes.
2626
- Use `docs/PR_PROCESS.md` for branch naming, draft PRs, merge order, dirty worktrees, and issue closing.
2727
- Use `docs/DAILY_HQ_RUNBOOK.md` for morning review, triage, monitoring, and handoff.
2828
- Use `infra/scripts/status-report.ps1` for read-only local worktree, PR, and issue status.

apps/dashboard/scripts/sync-fixtures.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { fileURLToPath } from "node:url";
55
const scriptDir = dirname(fileURLToPath(import.meta.url));
66
const repoRoot = resolve(scriptDir, "../../..");
77
const destinationDir = resolve(repoRoot, "apps/dashboard/public/data");
8-
const liveInfraReportDir = resolve(repoRoot, "docs/agent-runs/live-product-infra-rpc");
8+
const liveInfraReportDir = resolve(repoRoot, "reports/local/live-product-infra-rpc");
99
const fixtureCopies = [
1010
{
1111
label: "dashboard fixture",

apps/dashboard/src/data/workbench.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3183,7 +3183,7 @@ function buildProvenanceRecords(
31833183
status: liveReadinessReport ? "verified" : "unresolved",
31843184
facts: [
31853185
{ label: "schema", value: isRecord(liveReadinessReport) ? text(liveReadinessReport.schema) : "missing" },
3186-
{ label: "source", value: "docs/agent-runs/live-product-infra-rpc" },
3186+
{ label: "source", value: "reports/local/live-product-infra-rpc" },
31873187
],
31883188
raw: liveReadinessReport,
31893189
}),

docs/AGENT_PROMPTS.md

Lines changed: 0 additions & 325 deletions
This file was deleted.

docs/ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ Boundaries:
215215
Responsibilities:
216216

217217
- Keep `docs/CURRENT_STATE.md`, `docs/ROADMAP.md`, this architecture doc, and `docs/ISSUE_BACKLOG.md` current.
218-
- Keep agent prompts and PR process enforceable.
218+
- Keep worktree assignments and PR process enforceable.
219219
- Maintain labels, milestones, review flow, and daily runbook.
220-
- Prevent agents from overlapping folders or expanding into gated work.
220+
- Prevent overlapping worktree lanes from editing the same folders or expanding into gated work.
221221

222222
## Data Flow
223223

0 commit comments

Comments
 (0)