@bradtaylorsf/alpha-loop 1.1.0 → 1.1.1
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/README.md +10 -12
- package/dist/cli.js +1 -1
- package/package.json +1 -1
- package/templates/agents/reviewer.md +1 -1
- package/templates/skills/docs-sync/SKILL.md +42 -0
package/README.md
CHANGED
|
@@ -28,24 +28,17 @@ npx @bradtaylorsf/alpha-loop
|
|
|
28
28
|
## Quick Start
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
# 1. Initialize config
|
|
31
|
+
# 1. Initialize — runs full onboarding (config, vision, scan, sync)
|
|
32
32
|
cd your-project
|
|
33
33
|
alpha-loop init
|
|
34
34
|
|
|
35
|
-
# 2. Edit .alpha-loop.yaml
|
|
35
|
+
# 2. Edit .alpha-loop.yaml if needed (repo, harnesses, model, etc.)
|
|
36
36
|
|
|
37
|
-
# 3.
|
|
38
|
-
alpha-loop vision
|
|
39
|
-
|
|
40
|
-
# 4. Generate project context
|
|
41
|
-
alpha-loop scan
|
|
42
|
-
|
|
43
|
-
# 5. Run the loop — you'll be prompted to pick a milestone
|
|
37
|
+
# 3. Run the loop — you'll be prompted to pick a milestone
|
|
44
38
|
alpha-loop run
|
|
45
39
|
|
|
46
40
|
# Or target a specific milestone directly
|
|
47
41
|
alpha-loop run --milestone "v1.0"
|
|
48
|
-
|
|
49
42
|
```
|
|
50
43
|
|
|
51
44
|
## How It Works
|
|
@@ -127,10 +120,10 @@ During live verification, the agent takes screenshots at key states and saves th
|
|
|
127
120
|
|
|
128
121
|
| Command | Description |
|
|
129
122
|
|---------|-------------|
|
|
130
|
-
| `alpha-loop init` |
|
|
123
|
+
| `alpha-loop init` | Full onboarding: config, templates, vision, scan, sync, commit |
|
|
131
124
|
| `alpha-loop run` | Fetch matching issues, process them all, then exit |
|
|
132
125
|
| `alpha-loop run --dry-run` | Preview without making changes |
|
|
133
|
-
| `alpha-loop scan` | Generate/refresh project context
|
|
126
|
+
| `alpha-loop scan` | Generate/refresh project context and instructions file |
|
|
134
127
|
| `alpha-loop vision` | Interactive project vision setup (`.alpha-loop/vision.md`) |
|
|
135
128
|
| `alpha-loop auth` | Save authenticated browser state for verification |
|
|
136
129
|
| `alpha-loop history` | View session history |
|
|
@@ -176,6 +169,11 @@ dev_command: pnpm dev
|
|
|
176
169
|
port: 3000
|
|
177
170
|
auto_merge: true
|
|
178
171
|
|
|
172
|
+
# Coding harnesses to sync skills/agents to
|
|
173
|
+
harnesses:
|
|
174
|
+
- claude-code
|
|
175
|
+
- codex
|
|
176
|
+
|
|
179
177
|
# Safety limits (0 = unlimited)
|
|
180
178
|
max_issues: 20
|
|
181
179
|
max_session_duration: 7200 # 2 hours in seconds
|
package/dist/cli.js
CHANGED
|
@@ -8,7 +8,7 @@ import { syncCommand } from './commands/sync.js';
|
|
|
8
8
|
program
|
|
9
9
|
.name('alpha-loop')
|
|
10
10
|
.description('Agent-agnostic automated development loop')
|
|
11
|
-
.version('1.1.
|
|
11
|
+
.version('1.1.1');
|
|
12
12
|
program
|
|
13
13
|
.command('init')
|
|
14
14
|
.description('Full project onboarding: config, templates, vision, scan, sync')
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ name: reviewer
|
|
|
3
3
|
description: Reviews code changes, fixes issues found, and produces a review summary. Runs after implementation.
|
|
4
4
|
tools: Read, Write, Edit, Glob, Grep, Bash
|
|
5
5
|
model: opus
|
|
6
|
-
skills: code-review, security-analysis, testing-patterns, test-robustness, api-patterns
|
|
6
|
+
skills: code-review, security-analysis, testing-patterns, test-robustness, api-patterns, docs-sync
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
# Reviewer Agent
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docs-sync
|
|
3
|
+
description: Ensure documentation stays in sync with code changes. Trigger when modifying CLI commands, config options, directory structure, or public APIs.
|
|
4
|
+
when-to-use: When adding, removing, or changing CLI commands, config fields, directory layout, or user-facing behavior
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Documentation Sync
|
|
8
|
+
|
|
9
|
+
When making changes that affect user-facing behavior, always update the corresponding documentation.
|
|
10
|
+
|
|
11
|
+
## What to check
|
|
12
|
+
|
|
13
|
+
### CLI commands changed?
|
|
14
|
+
- Update `README.md` commands table
|
|
15
|
+
- Update `CLAUDE.md` commands section
|
|
16
|
+
- Update `--help` descriptions in `src/cli.ts`
|
|
17
|
+
|
|
18
|
+
### Config options changed?
|
|
19
|
+
- Update `README.md` Configuration Reference table
|
|
20
|
+
- Update `README.md` config example block
|
|
21
|
+
- Update `CLAUDE.md` if it references config
|
|
22
|
+
- Update the config template in `src/commands/init.ts`
|
|
23
|
+
|
|
24
|
+
### Directory structure changed?
|
|
25
|
+
- Update `CLAUDE.md` Directory Structure section
|
|
26
|
+
- Update `README.md` Project Artifacts table
|
|
27
|
+
|
|
28
|
+
### New skill or agent added?
|
|
29
|
+
- Skill: create `templates/skills/<name>/SKILL.md` with frontmatter
|
|
30
|
+
- Agent: create `templates/agents/<name>.md` with frontmatter
|
|
31
|
+
- Run `alpha-loop sync` to distribute
|
|
32
|
+
|
|
33
|
+
### Public API or behavior changed?
|
|
34
|
+
- Update relevant README sections
|
|
35
|
+
- Update CLAUDE.md if architectural
|
|
36
|
+
|
|
37
|
+
## Rules
|
|
38
|
+
|
|
39
|
+
- Documentation updates MUST be in the same commit as the code change
|
|
40
|
+
- Never leave README or CLAUDE.md referencing commands, options, or paths that no longer exist
|
|
41
|
+
- When removing a feature, search docs for all references before committing
|
|
42
|
+
- Keep README under 300 lines, CLAUDE.md under 200 lines
|