solo-cto-agent 1.3.1 → 1.3.2
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/CHANGELOG.md +6 -0
- package/README.md +13 -9
- package/docs/hero-banner.png +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -121,6 +121,12 @@ non-interactive verify in CI, and tear it all down with one command.
|
|
|
121
121
|
|
|
122
122
|
## Unreleased
|
|
123
123
|
|
|
124
|
+
* ci: add VS Code extension auto-publish to release workflow
|
|
125
|
+
|
|
126
|
+
* docs: add hero banner to README, update test badge to 996
|
|
127
|
+
|
|
128
|
+
* fix: rewrite managedAgentReview to match real Managed Agents API
|
|
129
|
+
|
|
124
130
|
* chore: vscode extension packaging verified (icon, license, gitignore)
|
|
125
131
|
|
|
126
132
|
* fix: routine.js readTier import from personalization (not core)
|
package/README.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="docs/hero-banner.png" alt="solo-cto-agent — AI code review for solo founders" width="720" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# solo-cto-agent
|
|
2
6
|
|
|
3
|
-
**
|
|
7
|
+
**Dual-agent code review, secret detection, and circuit breakers for solo founders.**
|
|
4
8
|
|
|
5
9
|
[](https://www.npmjs.com/package/solo-cto-agent)
|
|
6
|
-
[](https://github.com/seunghunbae-3svs/solo-cto-agent/actions/workflows/test.yml)
|
|
7
11
|
[](LICENSE)
|
|
8
12
|
[](CONTRIBUTING.md)
|
|
9
13
|
|
|
@@ -90,9 +94,9 @@ The point is simple:
|
|
|
90
94
|
|
|
91
95
|
* less repetitive setup work
|
|
92
96
|
* less context loss between sessions
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
97
|
+
* two models cross-checking each other's review (not one model's opinion)
|
|
98
|
+
* actual criticism before you commit to bad ideas
|
|
99
|
+
* secrets caught before they leave your machine
|
|
96
100
|
|
|
97
101
|
## What changes in practice
|
|
98
102
|
|
|
@@ -116,12 +120,12 @@ This is running on three private repos (Next.js + Supabase, Vite + React, Next.j
|
|
|
116
120
|
| PRs opened | 53 |
|
|
117
121
|
| PRs merged | 48 |
|
|
118
122
|
| Mean time to merge | 0.64 hours |
|
|
119
|
-
| Test suite |
|
|
123
|
+
| Test suite | 996 tests, 57 files, all passing |
|
|
120
124
|
| CLI commands | 25 subcommands |
|
|
121
125
|
| Skills | 8 (44 reference docs) |
|
|
122
|
-
| npm version | 1.2
|
|
126
|
+
| npm version | 1.3.2 |
|
|
123
127
|
|
|
124
|
-
|
|
128
|
+
Dual-agent cross-review and Managed Agents deep review are live and tested against real diffs. Decision tracking is wired but the decision queue has not produced enough data for meaningful stats yet.
|
|
125
129
|
|
|
126
130
|
## Who this is for
|
|
127
131
|
|
|
@@ -246,7 +250,7 @@ solo-cto-agent/
|
|
|
246
250
|
product-repo/ # product repo scaffold (workflows, STATE.md, .env.example)
|
|
247
251
|
builder-defaults/ # routing-policy.json, agent-scores.json
|
|
248
252
|
workflows/ # solo-cto-review.yml (3-pass auto-review)
|
|
249
|
-
tests/ #
|
|
253
|
+
tests/ # 996 tests across 57 files
|
|
250
254
|
benchmarks/ # effectiveness reports, metrics
|
|
251
255
|
docs/ # claude.md, tier-matrix, configuration, policies
|
|
252
256
|
examples/ # real-world flows: build, ship, review, founder-workflow
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solo-cto-agent",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "CTO-level AI agent toolkit for solo founders. Dual-agent review, circuit breakers, design quality gates, and session memory for Claude Cowork + OpenAI Codex.",
|
|
6
6
|
"author": "seunghunbae-3svs",
|