cto-agent-system 1.0.0
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/.claude/agents/architect.md +17 -0
- package/.claude/agents/backend.md +17 -0
- package/.claude/agents/cmo.md +17 -0
- package/.claude/agents/community-manager.md +17 -0
- package/.claude/agents/content-writer.md +17 -0
- package/.claude/agents/cpo.md +17 -0
- package/.claude/agents/cto.md +36 -0
- package/.claude/agents/data-analyst.md +17 -0
- package/.claude/agents/devops.md +17 -0
- package/.claude/agents/frontend.md +17 -0
- package/.claude/agents/growth-lead.md +17 -0
- package/.claude/agents/market-researcher.md +17 -0
- package/.claude/agents/product-designer.md +17 -0
- package/.claude/agents/product-manager.md +17 -0
- package/.claude/agents/qa.md +17 -0
- package/.claude/agents/reviewer.md +17 -0
- package/.claude/agents/ux-researcher.md +17 -0
- package/.claude/agents/ux-writer.md +17 -0
- package/.claude/skills/analyze-metrics/SKILL.md +39 -0
- package/.claude/skills/cto/SKILL.md +20 -0
- package/.claude/skills/design-screen/SKILL.md +47 -0
- package/.claude/skills/digest-project/SKILL.md +67 -0
- package/.claude/skills/implement-spec/SKILL.md +44 -0
- package/.claude/skills/plan-day/SKILL.md +32 -0
- package/.claude/skills/plan-growth/SKILL.md +40 -0
- package/.claude/skills/prioritize/SKILL.md +58 -0
- package/.claude/skills/report-to-ceo/SKILL.md +53 -0
- package/.claude/skills/research-market/SKILL.md +49 -0
- package/.claude/skills/research-user/SKILL.md +43 -0
- package/.claude/skills/review-diff/SKILL.md +65 -0
- package/.claude/skills/review-diff-local/SKILL.md +23 -0
- package/.claude/skills/run-tests/SKILL.md +38 -0
- package/.claude/skills/secure-branch/SKILL.md +119 -0
- package/.claude/skills/think-strategy/SKILL.md +64 -0
- package/.claude/skills/update-doctrine/SKILL.md +51 -0
- package/.claude/skills/update-review/SKILL.md +51 -0
- package/.claude/skills/update-strategy/SKILL.md +49 -0
- package/.claude/skills/using-company-system/SKILL.md +98 -0
- package/.claude/skills/write-code/SKILL.md +31 -0
- package/.claude/skills/write-content/SKILL.md +41 -0
- package/.claude/skills/write-copy/SKILL.md +35 -0
- package/.claude-plugin/marketplace.json +20 -0
- package/.claude-plugin/plugin.json +28 -0
- package/.codex/config.toml.example +43 -0
- package/.codex/prompts/cto.md +40 -0
- package/.codex-plugin/plugin.json +41 -0
- package/.cursor-plugin/plugin.json +24 -0
- package/.opencode/agent/architect.md +13 -0
- package/.opencode/agent/backend.md +13 -0
- package/.opencode/agent/cmo.md +13 -0
- package/.opencode/agent/community-manager.md +13 -0
- package/.opencode/agent/content-writer.md +13 -0
- package/.opencode/agent/cpo.md +13 -0
- package/.opencode/agent/cto.md +22 -0
- package/.opencode/agent/data-analyst.md +13 -0
- package/.opencode/agent/devops.md +13 -0
- package/.opencode/agent/frontend.md +13 -0
- package/.opencode/agent/growth-lead.md +13 -0
- package/.opencode/agent/market-researcher.md +13 -0
- package/.opencode/agent/product-designer.md +13 -0
- package/.opencode/agent/product-manager.md +13 -0
- package/.opencode/agent/qa.md +13 -0
- package/.opencode/agent/reviewer.md +13 -0
- package/.opencode/agent/ux-researcher.md +13 -0
- package/.opencode/agent/ux-writer.md +13 -0
- package/.opencode/rule/company-doctrine.md +15 -0
- package/.zcode-plugin/plugin.json +25 -0
- package/AGENTS.md +173 -0
- package/CLAUDE.md +1 -0
- package/README.md +182 -0
- package/hooks/hooks-codex.json +16 -0
- package/hooks/hooks-cursor.json +16 -0
- package/hooks/hooks.json +16 -0
- package/hooks/session-start +53 -0
- package/install.js +324 -0
- package/package.json +58 -0
- package/src/agents/architect/AGENTS.md +48 -0
- package/src/agents/backend/AGENTS.md +47 -0
- package/src/agents/cmo/AGENTS.md +61 -0
- package/src/agents/cmo/HEARTBEAT.md +49 -0
- package/src/agents/cmo/SOUL.md +43 -0
- package/src/agents/cmo/TOOLS.md +42 -0
- package/src/agents/community-manager/AGENTS.md +31 -0
- package/src/agents/content-writer/AGENTS.md +31 -0
- package/src/agents/cpo/AGENTS.md +73 -0
- package/src/agents/cpo/HEARTBEAT.md +51 -0
- package/src/agents/cpo/SOUL.md +43 -0
- package/src/agents/cpo/TOOLS.md +47 -0
- package/src/agents/cto/AGENTS.md +85 -0
- package/src/agents/cto/HEARTBEAT.md +210 -0
- package/src/agents/cto/SOUL.md +102 -0
- package/src/agents/cto/TOOLS.md +129 -0
- package/src/agents/data-analyst/AGENTS.md +31 -0
- package/src/agents/devops/AGENTS.md +50 -0
- package/src/agents/frontend/AGENTS.md +47 -0
- package/src/agents/growth-lead/AGENTS.md +31 -0
- package/src/agents/market-researcher/AGENTS.md +31 -0
- package/src/agents/product-designer/AGENTS.md +32 -0
- package/src/agents/product-manager/AGENTS.md +30 -0
- package/src/agents/qa/AGENTS.md +48 -0
- package/src/agents/reviewer/AGENTS.md +59 -0
- package/src/agents/ux-researcher/AGENTS.md +31 -0
- package/src/agents/ux-writer/AGENTS.md +31 -0
- package/src/skills/analyze-metrics/SKILL.md +39 -0
- package/src/skills/design-screen/SKILL.md +47 -0
- package/src/skills/digest-project/SKILL.md +67 -0
- package/src/skills/implement-spec/SKILL.md +44 -0
- package/src/skills/plan-day/SKILL.md +32 -0
- package/src/skills/plan-growth/SKILL.md +40 -0
- package/src/skills/prioritize/SKILL.md +58 -0
- package/src/skills/report-to-ceo/SKILL.md +53 -0
- package/src/skills/research-market/SKILL.md +49 -0
- package/src/skills/research-user/SKILL.md +43 -0
- package/src/skills/review-diff/SKILL.md +65 -0
- package/src/skills/review-diff-local/SKILL.md +23 -0
- package/src/skills/run-tests/SKILL.md +38 -0
- package/src/skills/secure-branch/SKILL.md +119 -0
- package/src/skills/think-strategy/SKILL.md +64 -0
- package/src/skills/update-doctrine/SKILL.md +51 -0
- package/src/skills/update-review/SKILL.md +51 -0
- package/src/skills/update-strategy/SKILL.md +49 -0
- package/src/skills/using-company-system/SKILL.md +98 -0
- package/src/skills/write-code/SKILL.md +31 -0
- package/src/skills/write-content/SKILL.md +41 -0
- package/src/skills/write-copy/SKILL.md +35 -0
- package/src/state/budget.md +37 -0
- package/src/state/escalation.md +55 -0
- package/src/state/protocol.md +65 -0
- package/src/state/routing.md +76 -0
- package/src/state/templates/backlog.md +15 -0
- package/src/state/templates/decisions.md +18 -0
- package/src/state/templates/doctrine-local.md +21 -0
- package/src/state/templates/progress.md +20 -0
- package/src/state/templates/roadmap-proposal.md +26 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Backlog
|
|
2
|
+
|
|
3
|
+
> Open work items, ranked. P0 at top. Updated each day.
|
|
4
|
+
|
|
5
|
+
## 🔴 P0 — Fires
|
|
6
|
+
- [ ] {item} — owner: {agent} — why urgent
|
|
7
|
+
|
|
8
|
+
## 🟡 P1 — High
|
|
9
|
+
- [ ] ...
|
|
10
|
+
|
|
11
|
+
## 🟢 P2 — Medium / future
|
|
12
|
+
- [ ] ...
|
|
13
|
+
|
|
14
|
+
## ❄️ Parked (waiting on something)
|
|
15
|
+
- {item} — blocked by: {what}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Decisions — Architectural Decision Records (ADR)
|
|
2
|
+
|
|
3
|
+
> Append-only record of significant technical decisions and incidents. Future runs read this to understand *why*, not just *what*. Newest at the bottom.
|
|
4
|
+
|
|
5
|
+
## ADR-1: {Title} — {DATE}
|
|
6
|
+
- **Status:** proposed / accepted / superseded by ADR-{N}
|
|
7
|
+
- **Context:** ...
|
|
8
|
+
- **Decision:** ...
|
|
9
|
+
- **Consequences:** (+ / −)
|
|
10
|
+
- **Alternatives:** ...
|
|
11
|
+
- **Reversible?** yes/no (one-door vs two-door)
|
|
12
|
+
|
|
13
|
+
## Incident notes
|
|
14
|
+
### {DATE} — {short title}
|
|
15
|
+
- Symptom: ...
|
|
16
|
+
- Root cause: ...
|
|
17
|
+
- Fix: ...
|
|
18
|
+
- Prevention: ...
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Doctrine (local, learned)
|
|
2
|
+
|
|
3
|
+
> Project-specific operating knowledge learned by the self-improvement loops (`update-doctrine`, `update-strategy`). The core doctrine is in `AGENTS.md` (read-only). This file is writable and grows over time.
|
|
4
|
+
|
|
5
|
+
## Build / test / lint commands
|
|
6
|
+
- ...
|
|
7
|
+
|
|
8
|
+
## Environment quirks
|
|
9
|
+
- ...
|
|
10
|
+
|
|
11
|
+
## Conventions (this repo)
|
|
12
|
+
- ...
|
|
13
|
+
|
|
14
|
+
## Known failure modes & workarounds
|
|
15
|
+
- ...
|
|
16
|
+
|
|
17
|
+
## CEO preferences (learned)
|
|
18
|
+
- ...
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
*This file is maintained by the `update-*` skills under a write-surface guard. Keep entries atomic and concise.*
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Progress Log
|
|
2
|
+
|
|
3
|
+
> Daily append-only log of what was done. The CTO reads this each morning to resume where it stopped. Newest entries at the top.
|
|
4
|
+
|
|
5
|
+
## {DATE} — Day {N}
|
|
6
|
+
|
|
7
|
+
### Done
|
|
8
|
+
- ...
|
|
9
|
+
|
|
10
|
+
### In progress (carry to tomorrow)
|
|
11
|
+
- ...
|
|
12
|
+
|
|
13
|
+
### Deferred to backlog
|
|
14
|
+
- ...
|
|
15
|
+
|
|
16
|
+
### Budget
|
|
17
|
+
- Tokens: {used}/{cap} ({%})
|
|
18
|
+
|
|
19
|
+
### Resume here tomorrow
|
|
20
|
+
- ...
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Roadmap Proposal — {DATE}
|
|
2
|
+
|
|
3
|
+
> Produced by the C-suite (CTO+CPO+CMO) in Phase 5. **Requires CEO approval** before any phase is implemented.
|
|
4
|
+
|
|
5
|
+
## Current state
|
|
6
|
+
- Code health: 🟢/🟡/🔴
|
|
7
|
+
- Tech debt: low/medium/high
|
|
8
|
+
- Most-used features: ...
|
|
9
|
+
|
|
10
|
+
## Product insights (CPO)
|
|
11
|
+
- Validated user pains: ...
|
|
12
|
+
- Confused flows: ...
|
|
13
|
+
|
|
14
|
+
## Market insights (CMO)
|
|
15
|
+
- Competitor moves: ...
|
|
16
|
+
- Differentiation: ...
|
|
17
|
+
|
|
18
|
+
## Proposed direction (awaiting CEO approval)
|
|
19
|
+
- Phase A: {feature} — owner: {C-level} — effort: {time} — why: {reason} — metric: {target}
|
|
20
|
+
- Phase B: ...
|
|
21
|
+
|
|
22
|
+
## Risks
|
|
23
|
+
- ...
|
|
24
|
+
|
|
25
|
+
## What I will NOT do (and why)
|
|
26
|
+
- ...
|