@cluesmith/codev 2.0.2 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dashboard/dist/assets/index-B-s8BA2l.js +135 -0
- package/dashboard/dist/assets/index-B-s8BA2l.js.map +1 -0
- package/dashboard/dist/assets/index-DB2AxRP7.css +32 -0
- package/dashboard/dist/index.html +2 -2
- package/dist/agent-farm/cli.d.ts.map +1 -1
- package/dist/agent-farm/cli.js +32 -14
- package/dist/agent-farm/cli.js.map +1 -1
- package/dist/agent-farm/commands/architect.d.ts +1 -1
- package/dist/agent-farm/commands/architect.js +3 -3
- package/dist/agent-farm/commands/architect.js.map +1 -1
- package/dist/agent-farm/commands/attach.d.ts +19 -0
- package/dist/agent-farm/commands/attach.d.ts.map +1 -1
- package/dist/agent-farm/commands/attach.js +172 -12
- package/dist/agent-farm/commands/attach.js.map +1 -1
- package/dist/agent-farm/commands/cleanup.js +6 -6
- package/dist/agent-farm/commands/cleanup.js.map +1 -1
- package/dist/agent-farm/commands/open.js +5 -5
- package/dist/agent-farm/commands/open.js.map +1 -1
- package/dist/agent-farm/commands/send.d.ts +22 -2
- package/dist/agent-farm/commands/send.d.ts.map +1 -1
- package/dist/agent-farm/commands/send.js +100 -181
- package/dist/agent-farm/commands/send.js.map +1 -1
- package/dist/agent-farm/commands/shell.js +5 -5
- package/dist/agent-farm/commands/shell.js.map +1 -1
- package/dist/agent-farm/commands/spawn-roles.d.ts +3 -9
- package/dist/agent-farm/commands/spawn-roles.d.ts.map +1 -1
- package/dist/agent-farm/commands/spawn-roles.js +14 -53
- package/dist/agent-farm/commands/spawn-roles.js.map +1 -1
- package/dist/agent-farm/commands/spawn-worktree.d.ts +11 -17
- package/dist/agent-farm/commands/spawn-worktree.d.ts.map +1 -1
- package/dist/agent-farm/commands/spawn-worktree.js +32 -13
- package/dist/agent-farm/commands/spawn-worktree.js.map +1 -1
- package/dist/agent-farm/commands/spawn.d.ts +8 -6
- package/dist/agent-farm/commands/spawn.d.ts.map +1 -1
- package/dist/agent-farm/commands/spawn.js +183 -69
- package/dist/agent-farm/commands/spawn.js.map +1 -1
- package/dist/agent-farm/commands/start.d.ts +4 -4
- package/dist/agent-farm/commands/start.js +16 -16
- package/dist/agent-farm/commands/start.js.map +1 -1
- package/dist/agent-farm/commands/status.d.ts +1 -1
- package/dist/agent-farm/commands/status.d.ts.map +1 -1
- package/dist/agent-farm/commands/status.js +15 -26
- package/dist/agent-farm/commands/status.js.map +1 -1
- package/dist/agent-farm/commands/stop.d.ts +4 -4
- package/dist/agent-farm/commands/stop.js +9 -9
- package/dist/agent-farm/commands/stop.js.map +1 -1
- package/dist/agent-farm/db/index.d.ts.map +1 -1
- package/dist/agent-farm/db/index.js +82 -7
- package/dist/agent-farm/db/index.js.map +1 -1
- package/dist/agent-farm/db/schema.d.ts +2 -2
- package/dist/agent-farm/db/schema.d.ts.map +1 -1
- package/dist/agent-farm/db/schema.js +21 -4
- package/dist/agent-farm/db/schema.js.map +1 -1
- package/dist/agent-farm/lib/tower-client.d.ts +36 -26
- package/dist/agent-farm/lib/tower-client.d.ts.map +1 -1
- package/dist/agent-farm/lib/tower-client.js +50 -25
- package/dist/agent-farm/lib/tower-client.js.map +1 -1
- package/dist/agent-farm/lib/tunnel-client.d.ts +12 -2
- package/dist/agent-farm/lib/tunnel-client.d.ts.map +1 -1
- package/dist/agent-farm/lib/tunnel-client.js +59 -1
- package/dist/agent-farm/lib/tunnel-client.js.map +1 -1
- package/dist/agent-farm/servers/overview.d.ts +111 -0
- package/dist/agent-farm/servers/overview.d.ts.map +1 -0
- package/dist/agent-farm/servers/overview.js +385 -0
- package/dist/agent-farm/servers/overview.js.map +1 -0
- package/dist/agent-farm/servers/tower-instances.d.ts +18 -20
- package/dist/agent-farm/servers/tower-instances.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-instances.js +97 -100
- package/dist/agent-farm/servers/tower-instances.js.map +1 -1
- package/dist/agent-farm/servers/tower-messages.d.ts +87 -0
- package/dist/agent-farm/servers/tower-messages.d.ts.map +1 -0
- package/dist/agent-farm/servers/tower-messages.js +202 -0
- package/dist/agent-farm/servers/tower-messages.js.map +1 -0
- package/dist/agent-farm/servers/tower-routes.d.ts +1 -1
- package/dist/agent-farm/servers/tower-routes.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-routes.js +343 -174
- package/dist/agent-farm/servers/tower-routes.js.map +1 -1
- package/dist/agent-farm/servers/tower-server.js +50 -21
- package/dist/agent-farm/servers/tower-server.js.map +1 -1
- package/dist/agent-farm/servers/tower-terminals.d.ts +35 -31
- package/dist/agent-farm/servers/tower-terminals.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-terminals.js +208 -184
- package/dist/agent-farm/servers/tower-terminals.js.map +1 -1
- package/dist/agent-farm/servers/tower-tunnel.d.ts +2 -2
- package/dist/agent-farm/servers/tower-tunnel.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-tunnel.js +12 -12
- package/dist/agent-farm/servers/tower-tunnel.js.map +1 -1
- package/dist/agent-farm/servers/tower-types.d.ts +8 -12
- package/dist/agent-farm/servers/tower-types.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-utils.d.ts +9 -9
- package/dist/agent-farm/servers/tower-utils.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-utils.js +18 -18
- package/dist/agent-farm/servers/tower-utils.js.map +1 -1
- package/dist/agent-farm/servers/tower-websocket.d.ts +2 -2
- package/dist/agent-farm/servers/tower-websocket.d.ts.map +1 -1
- package/dist/agent-farm/servers/tower-websocket.js +39 -18
- package/dist/agent-farm/servers/tower-websocket.js.map +1 -1
- package/dist/agent-farm/types.d.ts +5 -6
- package/dist/agent-farm/types.d.ts.map +1 -1
- package/dist/agent-farm/utils/agent-names.d.ts +85 -0
- package/dist/agent-farm/utils/agent-names.d.ts.map +1 -0
- package/dist/agent-farm/utils/agent-names.js +140 -0
- package/dist/agent-farm/utils/agent-names.js.map +1 -0
- package/dist/agent-farm/utils/config.d.ts +1 -1
- package/dist/agent-farm/utils/config.d.ts.map +1 -1
- package/dist/agent-farm/utils/config.js +16 -16
- package/dist/agent-farm/utils/config.js.map +1 -1
- package/dist/agent-farm/utils/file-tabs.d.ts +3 -3
- package/dist/agent-farm/utils/file-tabs.d.ts.map +1 -1
- package/dist/agent-farm/utils/file-tabs.js +9 -9
- package/dist/agent-farm/utils/file-tabs.js.map +1 -1
- package/dist/agent-farm/utils/index.d.ts +0 -1
- package/dist/agent-farm/utils/index.d.ts.map +1 -1
- package/dist/agent-farm/utils/index.js +0 -1
- package/dist/agent-farm/utils/index.js.map +1 -1
- package/dist/agent-farm/utils/message-format.d.ts +17 -0
- package/dist/agent-farm/utils/message-format.d.ts.map +1 -0
- package/dist/agent-farm/utils/message-format.js +41 -0
- package/dist/agent-farm/utils/message-format.js.map +1 -0
- package/dist/agent-farm/utils/notifications.d.ts +4 -4
- package/dist/agent-farm/utils/notifications.d.ts.map +1 -1
- package/dist/agent-farm/utils/notifications.js +18 -18
- package/dist/agent-farm/utils/notifications.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +26 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/adopt.d.ts +2 -2
- package/dist/commands/adopt.d.ts.map +1 -1
- package/dist/commands/adopt.js +13 -15
- package/dist/commands/adopt.js.map +1 -1
- package/dist/commands/consult/index.d.ts +26 -2
- package/dist/commands/consult/index.d.ts.map +1 -1
- package/dist/commands/consult/index.js +296 -83
- package/dist/commands/consult/index.js.map +1 -1
- package/dist/commands/consult/metrics.d.ts +90 -0
- package/dist/commands/consult/metrics.d.ts.map +1 -0
- package/dist/commands/consult/metrics.js +203 -0
- package/dist/commands/consult/metrics.js.map +1 -0
- package/dist/commands/consult/stats.d.ts +18 -0
- package/dist/commands/consult/stats.d.ts.map +1 -0
- package/dist/commands/consult/stats.js +150 -0
- package/dist/commands/consult/stats.js.map +1 -0
- package/dist/commands/consult/usage-extractor.d.ts +38 -0
- package/dist/commands/consult/usage-extractor.d.ts.map +1 -0
- package/dist/commands/consult/usage-extractor.js +99 -0
- package/dist/commands/consult/usage-extractor.js.map +1 -0
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/commands/doctor.js +11 -9
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/import.js +4 -4
- package/dist/commands/import.js.map +1 -1
- package/dist/commands/init.d.ts +2 -2
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +13 -15
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/porch/index.d.ts +6 -6
- package/dist/commands/porch/index.d.ts.map +1 -1
- package/dist/commands/porch/index.js +37 -37
- package/dist/commands/porch/index.js.map +1 -1
- package/dist/commands/porch/next.d.ts +1 -1
- package/dist/commands/porch/next.d.ts.map +1 -1
- package/dist/commands/porch/next.js +86 -92
- package/dist/commands/porch/next.js.map +1 -1
- package/dist/commands/porch/notify.d.ts +11 -0
- package/dist/commands/porch/notify.d.ts.map +1 -0
- package/dist/commands/porch/notify.js +30 -0
- package/dist/commands/porch/notify.js.map +1 -0
- package/dist/commands/porch/plan.d.ts +1 -1
- package/dist/commands/porch/plan.d.ts.map +1 -1
- package/dist/commands/porch/plan.js +3 -3
- package/dist/commands/porch/plan.js.map +1 -1
- package/dist/commands/porch/prompts.d.ts +10 -1
- package/dist/commands/porch/prompts.d.ts.map +1 -1
- package/dist/commands/porch/prompts.js +59 -35
- package/dist/commands/porch/prompts.js.map +1 -1
- package/dist/commands/porch/protocol.d.ts +1 -1
- package/dist/commands/porch/protocol.d.ts.map +1 -1
- package/dist/commands/porch/protocol.js +8 -8
- package/dist/commands/porch/protocol.js.map +1 -1
- package/dist/commands/porch/state.d.ts +6 -6
- package/dist/commands/porch/state.d.ts.map +1 -1
- package/dist/commands/porch/state.js +14 -12
- package/dist/commands/porch/state.js.map +1 -1
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/commands/update.js +10 -11
- package/dist/commands/update.js.map +1 -1
- package/dist/lib/github.d.ts +81 -0
- package/dist/lib/github.d.ts.map +1 -0
- package/dist/lib/github.js +141 -0
- package/dist/lib/github.js.map +1 -0
- package/dist/lib/scaffold.d.ts +13 -21
- package/dist/lib/scaffold.d.ts.map +1 -1
- package/dist/lib/scaffold.js +34 -57
- package/dist/lib/scaffold.js.map +1 -1
- package/dist/lib/skeleton.d.ts +7 -7
- package/dist/lib/skeleton.d.ts.map +1 -1
- package/dist/lib/skeleton.js +10 -10
- package/dist/lib/skeleton.js.map +1 -1
- package/dist/terminal/index.d.ts +14 -0
- package/dist/terminal/index.d.ts.map +1 -1
- package/dist/terminal/index.js +12 -0
- package/dist/terminal/index.js.map +1 -1
- package/dist/terminal/pty-manager.d.ts +1 -1
- package/dist/terminal/pty-manager.d.ts.map +1 -1
- package/dist/terminal/pty-manager.js +10 -7
- package/dist/terminal/pty-manager.js.map +1 -1
- package/dist/terminal/pty-session.js +3 -3
- package/dist/terminal/pty-session.js.map +1 -1
- package/dist/terminal/session-manager.d.ts +64 -0
- package/dist/terminal/session-manager.d.ts.map +1 -1
- package/dist/terminal/session-manager.js +299 -10
- package/dist/terminal/session-manager.js.map +1 -1
- package/dist/terminal/shellper-client.d.ts +2 -1
- package/dist/terminal/shellper-client.d.ts.map +1 -1
- package/dist/terminal/shellper-client.js +4 -2
- package/dist/terminal/shellper-client.js.map +1 -1
- package/dist/terminal/shellper-main.js +33 -4
- package/dist/terminal/shellper-main.js.map +1 -1
- package/dist/terminal/shellper-process.d.ts +24 -7
- package/dist/terminal/shellper-process.d.ts.map +1 -1
- package/dist/terminal/shellper-process.js +139 -36
- package/dist/terminal/shellper-process.js.map +1 -1
- package/dist/terminal/shellper-protocol.d.ts +1 -0
- package/dist/terminal/shellper-protocol.d.ts.map +1 -1
- package/dist/terminal/shellper-protocol.js.map +1 -1
- package/package.json +4 -1
- package/skeleton/.claude/skills/af/SKILL.md +7 -7
- package/skeleton/.claude/skills/consult/SKILL.md +1 -1
- package/skeleton/builders.md +2 -2
- package/skeleton/maintain/.gitkeep +1 -1
- package/skeleton/porch/prompts/specify.md +1 -1
- package/skeleton/protocols/bugfix/prompts/pr.md +15 -4
- package/skeleton/protocols/experiment/protocol.md +17 -17
- package/skeleton/protocols/maintain/prompts/audit.md +2 -2
- package/skeleton/protocols/maintain/prompts/sync.md +1 -1
- package/skeleton/protocols/maintain/prompts/verify.md +1 -1
- package/skeleton/protocols/maintain/protocol.md +8 -9
- package/skeleton/protocols/maintain/templates/maintenance-run.md +2 -2
- package/skeleton/protocols/spir/protocol.json +5 -5
- package/skeleton/protocols/spir/protocol.md +8 -8
- package/skeleton/protocols/tick/protocol.md +31 -31
- package/skeleton/resources/commands/agent-farm.md +14 -14
- package/skeleton/resources/commands/codev.md +0 -1
- package/skeleton/resources/commands/consult.md +3 -3
- package/skeleton/resources/spikes.md +3 -3
- package/skeleton/resources/workflow-reference.md +14 -14
- package/skeleton/roles/architect.md +25 -25
- package/skeleton/roles/builder.md +1 -1
- package/skeleton/roles/consultant.md +6 -0
- package/skeleton/templates/AGENTS.md +5 -5
- package/skeleton/templates/CLAUDE.md +5 -5
- package/skeleton/templates/lifecycle.md +9 -9
- package/templates/open.html +19 -16
- package/templates/tower.html +54 -94
- package/templates/vendor/marked.min.js +6 -0
- package/templates/vendor/prism-bash.min.js +1 -0
- package/templates/vendor/prism-css.min.js +1 -0
- package/templates/vendor/prism-javascript.min.js +1 -0
- package/templates/vendor/prism-json.min.js +1 -0
- package/templates/vendor/prism-markdown.min.js +1 -0
- package/templates/vendor/prism-markup.min.js +1 -0
- package/templates/vendor/prism-python.min.js +1 -0
- package/templates/vendor/prism-tomorrow.min.css +1 -0
- package/templates/vendor/prism-typescript.min.js +1 -0
- package/templates/vendor/prism-yaml.min.js +1 -0
- package/templates/vendor/prism.min.js +1 -0
- package/templates/vendor/purify.min.js +3 -0
- package/dashboard/dist/assets/index-4n9zpWLY.css +0 -32
- package/dashboard/dist/assets/index-b38SaXk5.js +0 -136
- package/dashboard/dist/assets/index-b38SaXk5.js.map +0 -1
- package/dist/agent-farm/hq-connector.d.ts +0 -19
- package/dist/agent-farm/hq-connector.d.ts.map +0 -1
- package/dist/agent-farm/hq-connector.js +0 -351
- package/dist/agent-farm/hq-connector.js.map +0 -1
- package/dist/agent-farm/utils/deps.d.ts +0 -51
- package/dist/agent-farm/utils/deps.d.ts.map +0 -1
- package/dist/agent-farm/utils/deps.js +0 -162
- package/dist/agent-farm/utils/deps.js.map +0 -1
- package/dist/agent-farm/utils/gate-status.d.ts +0 -16
- package/dist/agent-farm/utils/gate-status.d.ts.map +0 -1
- package/dist/agent-farm/utils/gate-status.js +0 -79
- package/dist/agent-farm/utils/gate-status.js.map +0 -1
- package/dist/agent-farm/utils/gate-watcher.d.ts +0 -38
- package/dist/agent-farm/utils/gate-watcher.d.ts.map +0 -1
- package/dist/agent-farm/utils/gate-watcher.js +0 -122
- package/dist/agent-farm/utils/gate-watcher.js.map +0 -1
- package/dist/agent-farm/utils/session.d.ts +0 -32
- package/dist/agent-farm/utils/session.d.ts.map +0 -1
- package/dist/agent-farm/utils/session.js +0 -57
- package/dist/agent-farm/utils/session.js.map +0 -1
- package/dist/lib/projectlist-parser.d.ts +0 -70
- package/dist/lib/projectlist-parser.d.ts.map +0 -1
- package/dist/lib/projectlist-parser.js +0 -200
- package/dist/lib/projectlist-parser.js.map +0 -1
- package/skeleton/templates/projectlist-archive.md +0 -21
- package/skeleton/templates/projectlist.md +0 -147
- package/templates/dashboard/css/dialogs.css +0 -149
- package/templates/dashboard/css/files.css +0 -558
- package/templates/dashboard/css/layout.css +0 -133
- package/templates/dashboard/css/projects.css +0 -501
- package/templates/dashboard/css/statusbar.css +0 -23
- package/templates/dashboard/css/tabs.css +0 -314
- package/templates/dashboard/css/utilities.css +0 -50
- package/templates/dashboard/css/variables.css +0 -45
- package/templates/dashboard/index.html +0 -149
- package/templates/dashboard/js/dialogs.js +0 -368
- package/templates/dashboard/js/files.js +0 -448
- package/templates/dashboard/js/main.js +0 -476
- package/templates/dashboard/js/projects.js +0 -544
- package/templates/dashboard/js/state.js +0 -91
- package/templates/dashboard/js/tabs.js +0 -518
- package/templates/dashboard/js/utils.js +0 -191
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# Project Archive
|
|
2
|
-
|
|
3
|
-
Completed and terminal projects. See `projectlist.md` for active projects.
|
|
4
|
-
|
|
5
|
-
> Projects are moved here once `integrated` or `abandoned` for 3+ days.
|
|
6
|
-
|
|
7
|
-
## Integrated Projects
|
|
8
|
-
|
|
9
|
-
Projects that have been completed and validated in production.
|
|
10
|
-
|
|
11
|
-
```yaml
|
|
12
|
-
# Projects are moved here from projectlist.md once integrated
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Terminal Projects
|
|
16
|
-
|
|
17
|
-
Projects that are paused or canceled.
|
|
18
|
-
|
|
19
|
-
```yaml
|
|
20
|
-
# Projects are moved here from projectlist.md once abandoned or on-hold
|
|
21
|
-
```
|
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
# Project List
|
|
2
|
-
|
|
3
|
-
Centralized tracking of all projects with status, priority, and dependencies.
|
|
4
|
-
|
|
5
|
-
> **Quick Reference**: See `codev/resources/workflow-reference.md` for stage diagrams and common commands.
|
|
6
|
-
|
|
7
|
-
## Project Lifecycle
|
|
8
|
-
|
|
9
|
-
Every project goes through stages. Not all projects reach completion:
|
|
10
|
-
|
|
11
|
-
**Active Lifecycle:**
|
|
12
|
-
1. **conceived** - Initial idea captured. Spec file may exist but is not yet approved. **AI agents must stop here after writing a spec.**
|
|
13
|
-
2. **specified** - Specification approved by human. **ONLY the human can mark a project as specified.**
|
|
14
|
-
3. **planned** - Implementation plan created (codev/plans/NNNN-name.md exists)
|
|
15
|
-
4. **implementing** - Actively being worked on (one or more phases in progress)
|
|
16
|
-
5. **implemented** - Code complete, tests passing, PR created and awaiting review
|
|
17
|
-
6. **committed** - PR merged to main branch
|
|
18
|
-
7. **integrated** - Merged to main, deployed to production, validated, reviewed (codev/reviews/NNNN-name.md exists), and **explicitly approved by project owner**. **ONLY the human can mark a project as integrated** - AI agents must never transition to this status on their own.
|
|
19
|
-
|
|
20
|
-
**Terminal States:**
|
|
21
|
-
- **abandoned** - Project canceled/rejected, will not be implemented (explain reason in notes)
|
|
22
|
-
- **on-hold** - Temporarily paused, may resume later (explain reason in notes)
|
|
23
|
-
|
|
24
|
-
## Format
|
|
25
|
-
|
|
26
|
-
```yaml
|
|
27
|
-
projects:
|
|
28
|
-
- id: "NNNN" # Four-digit project number
|
|
29
|
-
title: "Brief title"
|
|
30
|
-
summary: "One-sentence description of what this project does"
|
|
31
|
-
status: conceived|specified|planned|implementing|implemented|committed|integrated|abandoned|on-hold
|
|
32
|
-
priority: high|medium|low
|
|
33
|
-
files:
|
|
34
|
-
spec: codev/specs/NNNN-name.md # Required after "specified"
|
|
35
|
-
plan: codev/plans/NNNN-name.md # Required after "planned"
|
|
36
|
-
review: codev/reviews/NNNN-name.md # Required after "integrated"
|
|
37
|
-
dependencies: [] # List of project IDs this depends on
|
|
38
|
-
tags: [] # Categories (e.g., auth, billing, ui)
|
|
39
|
-
notes: "" # Optional notes about status or decisions
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
## Numbering Rules
|
|
43
|
-
|
|
44
|
-
1. **Sequential**: Use next available number (0001-9999)
|
|
45
|
-
2. **Reservation**: Add entry to this file FIRST before creating spec
|
|
46
|
-
3. **Renumbering**: If collision detected, newer project gets renumbered
|
|
47
|
-
4. **Gaps OK**: Deleted projects leave gaps (don't reuse numbers)
|
|
48
|
-
|
|
49
|
-
## Archiving Completed Projects
|
|
50
|
-
|
|
51
|
-
Once projects are `integrated` or `abandoned` for 3+ days, move them to `projectlist-archive.md`:
|
|
52
|
-
|
|
53
|
-
```
|
|
54
|
-
codev/
|
|
55
|
-
projectlist.md # Active projects (conceived → committed)
|
|
56
|
-
projectlist-archive.md # Completed projects (integrated, abandoned)
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
**Why archive?**
|
|
60
|
-
- Keeps daily work file small and fast
|
|
61
|
-
- Full history still versioned in git
|
|
62
|
-
- Can grep across both files when needed
|
|
63
|
-
|
|
64
|
-
**Archive format**: Same YAML format, sorted by ID (historical record).
|
|
65
|
-
|
|
66
|
-
## Usage Guidelines
|
|
67
|
-
|
|
68
|
-
### When to Add a Project
|
|
69
|
-
|
|
70
|
-
Add a project entry when:
|
|
71
|
-
- You have a concrete idea worth tracking
|
|
72
|
-
- The work is non-trivial (not just a bug fix or typo)
|
|
73
|
-
- You want to reserve a number before writing a spec
|
|
74
|
-
|
|
75
|
-
### Status Transitions
|
|
76
|
-
|
|
77
|
-
```
|
|
78
|
-
conceived → [HUMAN] → specified → planned → implementing → implemented → committed → [HUMAN] → integrated
|
|
79
|
-
↑ ↑
|
|
80
|
-
Human approves Human approves
|
|
81
|
-
the spec production deploy
|
|
82
|
-
|
|
83
|
-
Any status can transition to: abandoned, on-hold
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
**Human approval gates:**
|
|
87
|
-
- `conceived` → `specified`: Human must approve the specification
|
|
88
|
-
- `committed` → `integrated`: Human must validate production deployment
|
|
89
|
-
|
|
90
|
-
### Priority Guidelines
|
|
91
|
-
|
|
92
|
-
- **high**: Critical path, blocking other work, or significant business value
|
|
93
|
-
- **medium**: Important but not urgent, can wait for high-priority work
|
|
94
|
-
- **low**: Nice to have, polish, or speculative features
|
|
95
|
-
|
|
96
|
-
### Tags
|
|
97
|
-
|
|
98
|
-
Use consistent tags across projects for filtering:
|
|
99
|
-
- `auth`, `security` - Authentication and security features
|
|
100
|
-
- `ui`, `ux` - User interface and experience
|
|
101
|
-
- `api`, `architecture` - Backend and system design
|
|
102
|
-
- `testing`, `infrastructure` - Development and deployment
|
|
103
|
-
- `billing`, `credits` - Payment and monetization
|
|
104
|
-
- `features` - New user-facing functionality
|
|
105
|
-
|
|
106
|
-
---
|
|
107
|
-
|
|
108
|
-
## Projects
|
|
109
|
-
|
|
110
|
-
```yaml
|
|
111
|
-
projects:
|
|
112
|
-
# Example project entry (replace with your actual projects)
|
|
113
|
-
- id: "0001"
|
|
114
|
-
title: "Example Project"
|
|
115
|
-
summary: "Brief description of what this project accomplishes"
|
|
116
|
-
status: conceived
|
|
117
|
-
priority: medium
|
|
118
|
-
files:
|
|
119
|
-
spec: null
|
|
120
|
-
plan: null
|
|
121
|
-
review: null
|
|
122
|
-
dependencies: []
|
|
123
|
-
tags: [example]
|
|
124
|
-
notes: "Replace this with your first real project"
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
## Next Available Number
|
|
128
|
-
|
|
129
|
-
**0002** - Reserve this number for your next project
|
|
130
|
-
|
|
131
|
-
---
|
|
132
|
-
|
|
133
|
-
## Quick Reference
|
|
134
|
-
|
|
135
|
-
### View by Status
|
|
136
|
-
To see all projects at a specific status, search for `status: <status>` in this file.
|
|
137
|
-
|
|
138
|
-
### View by Priority
|
|
139
|
-
To see high-priority work, search for `priority: high`.
|
|
140
|
-
|
|
141
|
-
### Check Dependencies
|
|
142
|
-
Before starting a project, verify its dependencies are at least `implemented`.
|
|
143
|
-
|
|
144
|
-
### Protocol Selection
|
|
145
|
-
- **SPIR**: Most projects (formal spec → plan → implement → review)
|
|
146
|
-
- **TICK**: Small, well-defined tasks (< 300 lines) or amendments to existing specs
|
|
147
|
-
- **EXPERIMENT**: Research/prototyping before committing to a project
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
/* Dialogs, Modals, Context Menus, Toasts */
|
|
2
|
-
|
|
3
|
-
/* Dialog overlay */
|
|
4
|
-
.dialog-overlay {
|
|
5
|
-
position: fixed;
|
|
6
|
-
top: 0;
|
|
7
|
-
left: 0;
|
|
8
|
-
right: 0;
|
|
9
|
-
bottom: 0;
|
|
10
|
-
background: rgba(0, 0, 0, 0.6);
|
|
11
|
-
display: flex;
|
|
12
|
-
align-items: center;
|
|
13
|
-
justify-content: center;
|
|
14
|
-
z-index: 1000;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.dialog-overlay.hidden {
|
|
18
|
-
display: none;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.dialog {
|
|
22
|
-
background: var(--bg-secondary);
|
|
23
|
-
border: 1px solid var(--border);
|
|
24
|
-
border-radius: 8px;
|
|
25
|
-
padding: 20px;
|
|
26
|
-
min-width: 320px;
|
|
27
|
-
max-width: 90%;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.dialog h3 {
|
|
31
|
-
margin-bottom: 16px;
|
|
32
|
-
font-size: 16px;
|
|
33
|
-
font-weight: 500;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.dialog input {
|
|
37
|
-
width: 100%;
|
|
38
|
-
padding: 8px 12px;
|
|
39
|
-
border-radius: 4px;
|
|
40
|
-
border: 1px solid var(--border);
|
|
41
|
-
background: var(--bg-tertiary);
|
|
42
|
-
color: var(--text-primary);
|
|
43
|
-
font-size: 14px;
|
|
44
|
-
margin-bottom: 16px;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.dialog input:focus {
|
|
48
|
-
outline: none;
|
|
49
|
-
border-color: var(--accent);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.dialog-actions {
|
|
53
|
-
display: flex;
|
|
54
|
-
justify-content: flex-end;
|
|
55
|
-
gap: 8px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.quick-paths {
|
|
59
|
-
display: flex;
|
|
60
|
-
flex-wrap: wrap;
|
|
61
|
-
gap: 8px;
|
|
62
|
-
margin-bottom: 12px;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.quick-path {
|
|
66
|
-
padding: 4px 8px;
|
|
67
|
-
border-radius: 4px;
|
|
68
|
-
background: var(--bg-tertiary);
|
|
69
|
-
border: 1px solid var(--border);
|
|
70
|
-
color: var(--text-secondary);
|
|
71
|
-
cursor: pointer;
|
|
72
|
-
font-size: 12px;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.quick-path:hover {
|
|
76
|
-
background: var(--tab-hover);
|
|
77
|
-
border-color: var(--accent);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
/* Toast notifications */
|
|
81
|
-
.toast-container {
|
|
82
|
-
position: fixed;
|
|
83
|
-
bottom: 60px;
|
|
84
|
-
right: 16px;
|
|
85
|
-
z-index: 2000;
|
|
86
|
-
display: flex;
|
|
87
|
-
flex-direction: column;
|
|
88
|
-
gap: 8px;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.toast {
|
|
92
|
-
padding: 12px 16px;
|
|
93
|
-
background: var(--bg-secondary);
|
|
94
|
-
border: 1px solid var(--border);
|
|
95
|
-
border-radius: 6px;
|
|
96
|
-
font-size: 13px;
|
|
97
|
-
display: flex;
|
|
98
|
-
align-items: center;
|
|
99
|
-
gap: 8px;
|
|
100
|
-
animation: toast-in 0.3s ease-out;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.toast.error {
|
|
104
|
-
border-color: #ef4444;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.toast.success {
|
|
108
|
-
border-color: #22c55e;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
@keyframes toast-in {
|
|
112
|
-
from {
|
|
113
|
-
opacity: 0;
|
|
114
|
-
transform: translateY(10px);
|
|
115
|
-
}
|
|
116
|
-
to {
|
|
117
|
-
opacity: 1;
|
|
118
|
-
transform: translateY(0);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
/* Context menu */
|
|
123
|
-
.context-menu {
|
|
124
|
-
position: fixed;
|
|
125
|
-
background: var(--bg-secondary);
|
|
126
|
-
border: 1px solid var(--border);
|
|
127
|
-
border-radius: 4px;
|
|
128
|
-
padding: 4px 0;
|
|
129
|
-
min-width: 150px;
|
|
130
|
-
z-index: 1000;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.context-menu.hidden {
|
|
134
|
-
display: none;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.context-menu-item {
|
|
138
|
-
padding: 8px 12px;
|
|
139
|
-
cursor: pointer;
|
|
140
|
-
font-size: 13px;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
.context-menu-item:hover {
|
|
144
|
-
background: var(--tab-hover);
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.context-menu-item.danger {
|
|
148
|
-
color: #ef4444;
|
|
149
|
-
}
|