@itz4blitz/agentful 1.1.0 → 1.2.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 +73 -832
- package/package.json +2 -2
- package/template/CLAUDE.md +3 -0
- package/version.json +1 -1
package/README.md
CHANGED
|
@@ -1,893 +1,134 @@
|
|
|
1
1
|
# agentful
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<div align="center">
|
|
4
4
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://www.npmjs.com/package/@itz4blitz/agentful)
|
|
7
7
|
[](https://github.com/itz4blitz/agentful/actions)
|
|
8
|
+
[](https://nodejs.org)
|
|
9
|
+
[](https://github.com/itz4blitz/agentful/pulls)
|
|
10
|
+
[](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
[](https://www.npmjs.com/package/@itz4blitz/agentful)
|
|
13
|
+
[](https://github.com/itz4blitz/agentful)
|
|
14
|
+
[](https://discord.gg/SMDvJXUe)
|
|
15
|
+
[](https://agentful.app)
|
|
10
16
|
|
|
11
|
-
|
|
17
|
+
**AI agent toolkit for autonomous product development with Claude Code**
|
|
12
18
|
|
|
13
|
-
|
|
19
|
+
[Quick Start](#quick-start) • [Documentation](https://agentful.app) • [Discord](https://discord.gg/SMDvJXUe)
|
|
14
20
|
|
|
15
|
-
|
|
21
|
+
</div>
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
**The Swiss Army Knife of AI Agents** - Works with any LLM (Claude, GLM, DeepSeek, Ollama), any tech stack, any platform. Self-hosted or cloud.
|
|
18
24
|
|
|
19
|
-
|
|
20
|
-
- **Three authentication modes**: Tailscale (recommended), HMAC for public endpoints, SSH tunnel for local development
|
|
21
|
-
- **Own your data**: All code analysis and execution happens on your servers
|
|
22
|
-
- **No vendor lock-in**: Standard HTTP API, works with any client
|
|
23
|
-
- **Secure by default**: WireGuard encryption (Tailscale), request signing (HMAC), or localhost-only (SSH)
|
|
25
|
+
## Features
|
|
24
26
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
agentful serve --auth=none
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
### Multi-Platform CI/CD Integration
|
|
35
|
-
|
|
36
|
-
**Not locked to GitHub Actions** - works with any CI/CD platform:
|
|
37
|
-
|
|
38
|
-
- **GitHub Actions**: Native integration with workflow examples
|
|
39
|
-
- **GitLab CI**: Pipeline templates with caching and artifacts
|
|
40
|
-
- **Jenkins**: Groovy pipeline scripts for declarative/scripted pipelines
|
|
41
|
-
- **CircleCI, Bitbucket, Travis**: Use the HTTP API from any platform
|
|
42
|
-
- **Custom platforms**: Standard REST API for any HTTP client
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
# Generate workflow for your CI platform
|
|
46
|
-
agentful ci --generate-workflow
|
|
47
|
-
|
|
48
|
-
# Or integrate via HTTP API from any platform
|
|
49
|
-
curl -X POST http://your-server:3000/agent/orchestrator \
|
|
50
|
-
-H "Content-Type: application/json" \
|
|
51
|
-
-d '{"task": "implement feature X"}'
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
### Complete Agent Development Toolkit
|
|
55
|
-
|
|
56
|
-
Everything you need for structured AI-driven development:
|
|
57
|
-
|
|
58
|
-
- **8 specialized agents**: orchestrator, architect, backend, frontend, tester, reviewer, fixer, product-analyzer
|
|
59
|
-
- **6 reusable skills**: product-tracking, validation, testing, conversation, product-planning, deployment
|
|
60
|
-
- **6 quality gates**: Type checking, linting, test execution, coverage, security scanning, dead code detection
|
|
61
|
-
- **Interactive product planning**: Smart Q&A to build and validate specifications
|
|
62
|
-
- **State management**: Track progress, decisions, and completion across sessions
|
|
63
|
-
- **Smart updates**: 3-way merge preserves customizations during upgrades
|
|
64
|
-
|
|
65
|
-
### Auto-Generates Domain-Specific Agents
|
|
66
|
-
|
|
67
|
-
Agents that understand **YOUR codebase**, not generic templates:
|
|
68
|
-
|
|
69
|
-
- **Analyzes your patterns**: File organization, coding conventions, import styles, error handling
|
|
70
|
-
- **Detects tech stack**: Framework, language, database, ORM, testing tools
|
|
71
|
-
- **Generates specialized agents**: Real code examples from YOUR project
|
|
72
|
-
- **Confidence scoring**: See how well agents match your architecture (0.4-1.0)
|
|
73
|
-
- **Continuous refinement**: Re-analyzes after implementations to improve accuracy
|
|
74
|
-
|
|
75
|
-
**New projects**: Start with best-practice templates (0.4 confidence), then auto-refine after first feature.
|
|
76
|
-
**Existing projects**: Immediate high-confidence agents (0.8-1.0) from your actual code.
|
|
77
|
-
|
|
78
|
-
---
|
|
27
|
+
- **8 specialized agents** - orchestrator, architect, backend, frontend, tester, reviewer, fixer, product-analyzer
|
|
28
|
+
- **6 quality gates** - types, tests, coverage, lint, security, dead code
|
|
29
|
+
- **Auto-generated domain agents** - learns your codebase patterns and conventions
|
|
30
|
+
- **Self-hosted execution** - run agents on your infrastructure (optional)
|
|
31
|
+
- **Multi-platform CI/CD** - GitHub Actions, GitLab, Jenkins, or any HTTP client
|
|
32
|
+
- **Product-driven workflow** - define specs, agents build features
|
|
79
33
|
|
|
80
34
|
## Quick Start
|
|
81
35
|
|
|
82
|
-
### 1. Install agentful
|
|
83
|
-
|
|
84
36
|
```bash
|
|
37
|
+
# 1. Install
|
|
85
38
|
npx @itz4blitz/agentful init
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
This installs all components (8 agents, 6 skills, quality gates) and auto-detects your tech stack.
|
|
89
39
|
|
|
90
|
-
|
|
40
|
+
# 2. Start Claude Code
|
|
41
|
+
claude
|
|
91
42
|
|
|
92
|
-
|
|
93
|
-
claude # Start Claude Code
|
|
43
|
+
# 3. Define product spec (interactive)
|
|
94
44
|
/agentful-product
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
Interactive Q&A creates your product specification with readiness scoring.
|
|
98
|
-
|
|
99
|
-
### 3. Generate domain-specific agents
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
/agentful-analyze
|
|
103
|
-
```
|
|
104
45
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
### 4. Start development
|
|
108
|
-
|
|
109
|
-
```bash
|
|
46
|
+
# 4. Start development
|
|
110
47
|
/agentful-start
|
|
111
48
|
```
|
|
112
49
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
---
|
|
116
|
-
|
|
117
|
-
## Remote Execution
|
|
118
|
-
|
|
119
|
-
Run agentful agents on remote servers via secure HTTP API.
|
|
120
|
-
|
|
121
|
-
### Authentication Modes
|
|
122
|
-
|
|
123
|
-
#### Tailscale (Recommended)
|
|
124
|
-
|
|
125
|
-
Uses WireGuard encryption for secure remote access:
|
|
126
|
-
|
|
127
|
-
```bash
|
|
128
|
-
# Install Tailscale
|
|
129
|
-
curl -fsSL https://tailscale.com/install.sh | sh
|
|
130
|
-
tailscale up
|
|
131
|
-
|
|
132
|
-
# Start server (listens on Tailscale IP only)
|
|
133
|
-
agentful serve --auth=tailscale
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
**Benefits**:
|
|
137
|
-
- End-to-end encrypted (WireGuard)
|
|
138
|
-
- No public IP needed
|
|
139
|
-
- Works across NAT/firewalls
|
|
140
|
-
- Access from anywhere securely
|
|
141
|
-
|
|
142
|
-
#### HMAC (Public Endpoints)
|
|
143
|
-
|
|
144
|
-
Signature-based authentication with replay protection:
|
|
145
|
-
|
|
146
|
-
```bash
|
|
147
|
-
# Generate secret
|
|
148
|
-
export SECRET=$(openssl rand -hex 32)
|
|
149
|
-
|
|
150
|
-
# Start server with HMAC auth and HTTPS
|
|
151
|
-
agentful serve --auth=hmac --secret=$SECRET --https --cert=cert.pem --key=key.pem
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
**Client usage**:
|
|
155
|
-
|
|
156
|
-
```bash
|
|
157
|
-
# Calculate HMAC signature
|
|
158
|
-
TIMESTAMP=$(date +%s)
|
|
159
|
-
SIGNATURE=$(echo -n "${TIMESTAMP}${PAYLOAD}" | openssl dgst -sha256 -hmac "$SECRET" -binary | base64)
|
|
160
|
-
|
|
161
|
-
curl -X POST https://your-server:3000/agent/orchestrator \
|
|
162
|
-
-H "Content-Type: application/json" \
|
|
163
|
-
-H "X-Timestamp: $TIMESTAMP" \
|
|
164
|
-
-H "X-Signature: $SIGNATURE" \
|
|
165
|
-
-d "$PAYLOAD"
|
|
166
|
-
```
|
|
167
|
-
|
|
168
|
-
**Benefits**:
|
|
169
|
-
- Secure for public endpoints
|
|
170
|
-
- Replay attack prevention (timestamp validation)
|
|
171
|
-
- No additional infrastructure needed
|
|
172
|
-
|
|
173
|
-
#### SSH Tunnel (Local Development)
|
|
174
|
-
|
|
175
|
-
Localhost-only access via SSH tunnel:
|
|
176
|
-
|
|
177
|
-
```bash
|
|
178
|
-
# On server
|
|
179
|
-
agentful serve --auth=none
|
|
180
|
-
|
|
181
|
-
# On client
|
|
182
|
-
ssh -L 3000:localhost:3000 your-server
|
|
183
|
-
curl http://localhost:3000/agent/orchestrator -d '{"task": "..."}'
|
|
184
|
-
```
|
|
185
|
-
|
|
186
|
-
**Benefits**:
|
|
187
|
-
- Simple setup for development
|
|
188
|
-
- SSH handles authentication
|
|
189
|
-
- No additional configuration
|
|
190
|
-
|
|
191
|
-
### Oracle Cloud Free Tier Deployment
|
|
192
|
-
|
|
193
|
-
Deploy agentful to Oracle Cloud's always-free tier: **4 ARM cores, 24GB RAM, $0/month**.
|
|
194
|
-
|
|
195
|
-
#### 1. Create Oracle Cloud Account
|
|
196
|
-
|
|
197
|
-
1. Sign up at [cloud.oracle.com](https://cloud.oracle.com)
|
|
198
|
-
2. Navigate to **Compute** > **Instances**
|
|
199
|
-
3. Click **Create Instance**
|
|
200
|
-
|
|
201
|
-
#### 2. Configure Instance
|
|
202
|
-
|
|
203
|
-
- **Image**: Ubuntu 22.04 LTS (ARM)
|
|
204
|
-
- **Shape**: VM.Standard.A1.Flex (4 OCPUs, 24GB RAM - always free)
|
|
205
|
-
- **Networking**: Create new VCN with default settings
|
|
206
|
-
- **SSH Keys**: Upload your public key
|
|
207
|
-
|
|
208
|
-
#### 3. Install Dependencies
|
|
209
|
-
|
|
210
|
-
```bash
|
|
211
|
-
# SSH into instance
|
|
212
|
-
ssh ubuntu@<instance-ip>
|
|
213
|
-
|
|
214
|
-
# Install Node.js 22
|
|
215
|
-
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
|
|
216
|
-
sudo apt-get install -y nodejs
|
|
217
|
-
|
|
218
|
-
# Install Tailscale
|
|
219
|
-
curl -fsSL https://tailscale.com/install.sh | sh
|
|
220
|
-
sudo tailscale up
|
|
221
|
-
```
|
|
222
|
-
|
|
223
|
-
#### 4. Deploy agentful
|
|
224
|
-
|
|
225
|
-
```bash
|
|
226
|
-
# Clone your repository
|
|
227
|
-
git clone https://github.com/your-org/your-project.git
|
|
228
|
-
cd your-project
|
|
229
|
-
|
|
230
|
-
# Initialize agentful
|
|
231
|
-
npx @itz4blitz/agentful init
|
|
232
|
-
|
|
233
|
-
# Start server (runs in background)
|
|
234
|
-
nohup npx agentful serve --auth=tailscale > agentful.log 2>&1 &
|
|
235
|
-
```
|
|
236
|
-
|
|
237
|
-
#### 5. Configure Systemd (Optional)
|
|
238
|
-
|
|
239
|
-
Create `/etc/systemd/system/agentful.service`:
|
|
240
|
-
|
|
241
|
-
```ini
|
|
242
|
-
[Unit]
|
|
243
|
-
Description=agentful agent server
|
|
244
|
-
After=network.target
|
|
245
|
-
|
|
246
|
-
[Service]
|
|
247
|
-
Type=simple
|
|
248
|
-
User=ubuntu
|
|
249
|
-
WorkingDirectory=/home/ubuntu/your-project
|
|
250
|
-
ExecStart=/usr/bin/npx agentful serve --auth=tailscale
|
|
251
|
-
Restart=always
|
|
252
|
-
RestartSec=10
|
|
253
|
-
|
|
254
|
-
[Install]
|
|
255
|
-
WantedBy=multi-user.target
|
|
256
|
-
```
|
|
257
|
-
|
|
258
|
-
Enable and start:
|
|
259
|
-
|
|
260
|
-
```bash
|
|
261
|
-
sudo systemctl daemon-reload
|
|
262
|
-
sudo systemctl enable agentful
|
|
263
|
-
sudo systemctl start agentful
|
|
264
|
-
```
|
|
265
|
-
|
|
266
|
-
### Configuration
|
|
267
|
-
|
|
268
|
-
Server configuration in `.claude/settings.json`:
|
|
269
|
-
|
|
270
|
-
```json
|
|
271
|
-
{
|
|
272
|
-
"server": {
|
|
273
|
-
"port": 3000,
|
|
274
|
-
"host": "0.0.0.0",
|
|
275
|
-
"auth": "tailscale",
|
|
276
|
-
"https": {
|
|
277
|
-
"enabled": true,
|
|
278
|
-
"cert": "/path/to/cert.pem",
|
|
279
|
-
"key": "/path/to/key.pem"
|
|
280
|
-
},
|
|
281
|
-
"hmac": {
|
|
282
|
-
"secret": "${HMAC_SECRET}",
|
|
283
|
-
"timestampWindow": 300
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
```
|
|
288
|
-
|
|
289
|
-
---
|
|
290
|
-
|
|
291
|
-
## CI/CD Integration
|
|
292
|
-
|
|
293
|
-
Integrate agentful with any CI/CD platform via HTTP API or workflow templates.
|
|
294
|
-
|
|
295
|
-
### GitHub Actions
|
|
296
|
-
|
|
297
|
-
```yaml
|
|
298
|
-
name: agentful CI/CD
|
|
299
|
-
on: [push, pull_request]
|
|
300
|
-
|
|
301
|
-
jobs:
|
|
302
|
-
agentful:
|
|
303
|
-
runs-on: ubuntu-latest
|
|
304
|
-
steps:
|
|
305
|
-
- uses: actions/checkout@v4
|
|
306
|
-
|
|
307
|
-
- name: Setup Node.js
|
|
308
|
-
uses: actions/setup-node@v4
|
|
309
|
-
with:
|
|
310
|
-
node-version: 22
|
|
311
|
-
|
|
312
|
-
- name: Initialize agentful
|
|
313
|
-
run: npx @itz4blitz/agentful init
|
|
314
|
-
|
|
315
|
-
- name: Run orchestrator
|
|
316
|
-
run: |
|
|
317
|
-
npx agentful agent orchestrator \
|
|
318
|
-
--task "implement pending features" \
|
|
319
|
-
--validate
|
|
320
|
-
|
|
321
|
-
- name: Quality gates
|
|
322
|
-
run: npx agentful validate
|
|
323
|
-
```
|
|
324
|
-
|
|
325
|
-
### GitLab CI
|
|
326
|
-
|
|
327
|
-
```yaml
|
|
328
|
-
stages:
|
|
329
|
-
- setup
|
|
330
|
-
- implement
|
|
331
|
-
- validate
|
|
332
|
-
|
|
333
|
-
setup:
|
|
334
|
-
stage: setup
|
|
335
|
-
script:
|
|
336
|
-
- npx @itz4blitz/agentful init
|
|
337
|
-
cache:
|
|
338
|
-
paths:
|
|
339
|
-
- .claude/
|
|
340
|
-
- node_modules/
|
|
341
|
-
|
|
342
|
-
implement:
|
|
343
|
-
stage: implement
|
|
344
|
-
script:
|
|
345
|
-
- npx agentful agent orchestrator --task "implement pending features"
|
|
346
|
-
artifacts:
|
|
347
|
-
paths:
|
|
348
|
-
- .agentful/
|
|
349
|
-
- src/
|
|
350
|
-
|
|
351
|
-
validate:
|
|
352
|
-
stage: validate
|
|
353
|
-
script:
|
|
354
|
-
- npx agentful validate
|
|
355
|
-
dependencies:
|
|
356
|
-
- implement
|
|
357
|
-
```
|
|
358
|
-
|
|
359
|
-
### Jenkins
|
|
360
|
-
|
|
361
|
-
```groovy
|
|
362
|
-
pipeline {
|
|
363
|
-
agent any
|
|
364
|
-
|
|
365
|
-
stages {
|
|
366
|
-
stage('Setup') {
|
|
367
|
-
steps {
|
|
368
|
-
sh 'npx @itz4blitz/agentful init'
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
stage('Implement') {
|
|
373
|
-
steps {
|
|
374
|
-
sh 'npx agentful agent orchestrator --task "implement pending features"'
|
|
375
|
-
}
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
stage('Validate') {
|
|
379
|
-
steps {
|
|
380
|
-
sh 'npx agentful validate'
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
post {
|
|
386
|
-
always {
|
|
387
|
-
archiveArtifacts artifacts: '.agentful/**', allowEmptyArchive: true
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
```
|
|
392
|
-
|
|
393
|
-
### HTTP API (Any Platform)
|
|
394
|
-
|
|
395
|
-
Use the REST API from any CI/CD platform:
|
|
396
|
-
|
|
397
|
-
```bash
|
|
398
|
-
# CircleCI, Bitbucket, Travis, etc.
|
|
399
|
-
curl -X POST http://agentful-server:3000/agent/orchestrator \
|
|
400
|
-
-H "Content-Type: application/json" \
|
|
401
|
-
-H "X-Timestamp: $(date +%s)" \
|
|
402
|
-
-H "X-Signature: $SIGNATURE" \
|
|
403
|
-
-d '{
|
|
404
|
-
"task": "implement feature X",
|
|
405
|
-
"context": {
|
|
406
|
-
"branch": "'$CI_BRANCH'",
|
|
407
|
-
"commit": "'$CI_COMMIT'"
|
|
408
|
-
}
|
|
409
|
-
}'
|
|
410
|
-
```
|
|
411
|
-
|
|
412
|
-
**API Endpoints**:
|
|
413
|
-
|
|
414
|
-
- `POST /agent/{agent-name}` - Execute agent task
|
|
415
|
-
- `GET /status` - Get current state
|
|
416
|
-
- `POST /validate` - Run quality gates
|
|
417
|
-
- `GET /health` - Health check
|
|
418
|
-
|
|
419
|
-
---
|
|
420
|
-
|
|
421
|
-
## Domain-Specific Agent Generation
|
|
422
|
-
|
|
423
|
-
agentful generates agents that understand YOUR codebase, not generic templates.
|
|
424
|
-
|
|
425
|
-
### How It Works
|
|
426
|
-
|
|
427
|
-
#### 1. Architecture Analysis
|
|
428
|
-
|
|
429
|
-
The architect agent samples your codebase to detect:
|
|
430
|
-
|
|
431
|
-
- **Language and framework**: TypeScript + React, Python + Django, etc.
|
|
432
|
-
- **File organization**: Feature-based, layer-based, monorepo, etc.
|
|
433
|
-
- **Coding conventions**: Naming patterns, import styles, formatting
|
|
434
|
-
- **Error handling**: Try/catch patterns, error types, logging
|
|
435
|
-
- **Testing patterns**: Framework, test structure, mocking strategies
|
|
436
|
-
|
|
437
|
-
```bash
|
|
438
|
-
/agentful-analyze
|
|
439
|
-
```
|
|
440
|
-
|
|
441
|
-
Analysis output saved to `.agentful/architecture.json`:
|
|
442
|
-
|
|
443
|
-
```json
|
|
444
|
-
{
|
|
445
|
-
"language": "typescript",
|
|
446
|
-
"framework": "react",
|
|
447
|
-
"patterns": {
|
|
448
|
-
"fileOrganization": "feature-based",
|
|
449
|
-
"importStyle": "named-imports",
|
|
450
|
-
"errorHandling": "custom-error-classes",
|
|
451
|
-
"testing": "jest-with-rtl"
|
|
452
|
-
},
|
|
453
|
-
"confidence": 0.85,
|
|
454
|
-
"examples": {
|
|
455
|
-
"componentStructure": "src/features/auth/LoginForm.tsx",
|
|
456
|
-
"apiClient": "src/lib/api/client.ts",
|
|
457
|
-
"errorHandling": "src/lib/errors/ApiError.ts"
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
```
|
|
461
|
-
|
|
462
|
-
#### 2. Agent Generation Flow
|
|
463
|
-
|
|
464
|
-
##### New Projects (No Code Yet)
|
|
465
|
-
|
|
466
|
-
1. **Tech stack prompt**: Architect asks about your choices
|
|
467
|
-
```
|
|
468
|
-
Frontend framework: React
|
|
469
|
-
Backend framework: Express
|
|
470
|
-
Database: PostgreSQL
|
|
471
|
-
ORM: Prisma
|
|
472
|
-
```
|
|
473
|
-
|
|
474
|
-
2. **Template-based generation**: Creates agents using best practices
|
|
475
|
-
- Based on official documentation
|
|
476
|
-
- Common patterns and conventions
|
|
477
|
-
- Marked with `confidence: 0.4`
|
|
478
|
-
|
|
479
|
-
3. **First feature implementation**: System builds initial feature
|
|
480
|
-
|
|
481
|
-
4. **Automatic re-analysis**: After completion
|
|
482
|
-
- Analyzes actual code patterns
|
|
483
|
-
- Updates agents with project-specific examples
|
|
484
|
-
- Confidence increases to `0.8+`
|
|
485
|
-
- Remaining features use refined agents
|
|
486
|
-
|
|
487
|
-
##### Existing Projects (With Code)
|
|
488
|
-
|
|
489
|
-
1. **Pattern detection**: Immediate analysis of existing code
|
|
490
|
-
2. **High-confidence agents**: Real examples from your project (`0.8-1.0`)
|
|
491
|
-
3. **Ready to use**: Start implementing features immediately
|
|
492
|
-
|
|
493
|
-
### Generate Specialized Agents
|
|
494
|
-
|
|
495
|
-
After analysis, generate domain-specific agents:
|
|
496
|
-
|
|
497
|
-
```bash
|
|
498
|
-
/agentful-generate
|
|
499
|
-
```
|
|
500
|
-
|
|
501
|
-
This creates/updates agents in `.claude/agents/` with:
|
|
502
|
-
|
|
503
|
-
- **Real code examples** from YOUR project
|
|
504
|
-
- **Specific patterns** matching your conventions
|
|
505
|
-
- **Framework-specific guidance** for your stack
|
|
506
|
-
- **Confidence scores** indicating pattern certainty
|
|
507
|
-
|
|
508
|
-
Example generated agent (`.claude/agents/backend.md`):
|
|
509
|
-
|
|
510
|
-
```markdown
|
|
511
|
-
# Backend Agent
|
|
512
|
-
|
|
513
|
-
You are the backend agent for a TypeScript Express application.
|
|
514
|
-
|
|
515
|
-
## Project Architecture
|
|
516
|
-
|
|
517
|
-
**Framework**: Express with TypeScript
|
|
518
|
-
**Database**: PostgreSQL with Prisma ORM
|
|
519
|
-
**Confidence**: 0.87
|
|
520
|
-
|
|
521
|
-
## Coding Patterns
|
|
522
|
-
|
|
523
|
-
### API Route Structure
|
|
524
|
-
Follow the feature-based organization pattern:
|
|
525
|
-
|
|
526
|
-
\`\`\`typescript
|
|
527
|
-
// src/features/users/routes.ts
|
|
528
|
-
import { Router } from 'express';
|
|
529
|
-
import { UserController } from './controller';
|
|
530
|
-
|
|
531
|
-
export const userRouter = Router();
|
|
532
|
-
userRouter.post('/users', UserController.create);
|
|
533
|
-
\`\`\`
|
|
534
|
-
|
|
535
|
-
### Error Handling
|
|
536
|
-
Use custom error classes with proper HTTP status codes:
|
|
537
|
-
|
|
538
|
-
\`\`\`typescript
|
|
539
|
-
// Example from: src/lib/errors/ApiError.ts
|
|
540
|
-
export class ValidationError extends ApiError {
|
|
541
|
-
constructor(message: string, field?: string) {
|
|
542
|
-
super(message, 400, 'VALIDATION_ERROR', { field });
|
|
543
|
-
}
|
|
544
|
-
}
|
|
545
|
-
\`\`\`
|
|
546
|
-
|
|
547
|
-
### Database Access
|
|
548
|
-
Use Prisma client with transaction patterns:
|
|
549
|
-
|
|
550
|
-
\`\`\`typescript
|
|
551
|
-
// Example from: src/features/orders/service.ts
|
|
552
|
-
await prisma.$transaction(async (tx) => {
|
|
553
|
-
await tx.order.create({ data: orderData });
|
|
554
|
-
await tx.inventory.update({ where: { id }, data: { quantity: { decrement: 1 } } });
|
|
555
|
-
});
|
|
556
|
-
\`\`\`
|
|
557
|
-
```
|
|
558
|
-
|
|
559
|
-
### Confidence Scores
|
|
560
|
-
|
|
561
|
-
Agents include confidence scores indicating pattern detection certainty:
|
|
562
|
-
|
|
563
|
-
- **0.4**: Template-based (new projects before first implementation)
|
|
564
|
-
- **0.6-0.7**: Partial pattern detection (limited code samples)
|
|
565
|
-
- **0.8-0.9**: Strong pattern detection (consistent patterns found)
|
|
566
|
-
- **1.0**: Full confidence (comprehensive pattern analysis)
|
|
567
|
-
|
|
568
|
-
### Continuous Refinement
|
|
569
|
-
|
|
570
|
-
Agents improve over time:
|
|
571
|
-
|
|
572
|
-
1. **After each feature**: Architect can re-analyze to update patterns
|
|
573
|
-
2. **Manual refinement**: Edit generated agents in `.claude/agents/`
|
|
574
|
-
3. **Version control**: Track agent evolution with your codebase
|
|
575
|
-
|
|
576
|
-
---
|
|
577
|
-
|
|
578
|
-
## Installation
|
|
579
|
-
|
|
580
|
-
### Web Configurator
|
|
581
|
-
|
|
582
|
-
Configure your agentful installation with an interactive web interface:
|
|
583
|
-
|
|
584
|
-
**[agentful.app](https://agentful.app)**
|
|
585
|
-
|
|
586
|
-
- Visual component selection
|
|
587
|
-
- 2 optimized presets
|
|
588
|
-
- Custom configurations
|
|
589
|
-
- Shareable setup URLs
|
|
590
|
-
- No CLI required
|
|
591
|
-
|
|
592
|
-
### Default Installation (Recommended)
|
|
593
|
-
|
|
594
|
-
Install agentful with all components - works with any tech stack:
|
|
50
|
+
## Installation Options
|
|
595
51
|
|
|
596
52
|
```bash
|
|
53
|
+
# Default: All components (recommended)
|
|
597
54
|
npx @itz4blitz/agentful init
|
|
598
|
-
```
|
|
599
|
-
|
|
600
|
-
This installs:
|
|
601
|
-
- **8 agents**: orchestrator, architect, backend, frontend, tester, reviewer, fixer, product-analyzer
|
|
602
|
-
- **6 skills**: product-tracking, validation, testing, conversation, product-planning, deployment
|
|
603
|
-
- **Quality gates**: types, tests, coverage, lint, security, dead-code
|
|
604
|
-
|
|
605
|
-
**Tech stack is auto-detected** on first run (TypeScript, Python, React, etc.) - no need to specify.
|
|
606
55
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
For simple scripts/CLIs that only need backend code:
|
|
610
|
-
|
|
611
|
-
```bash
|
|
56
|
+
# Minimal: Simple scripts/CLIs
|
|
612
57
|
npx @itz4blitz/agentful init --preset=minimal
|
|
613
|
-
```
|
|
614
|
-
|
|
615
|
-
This installs only:
|
|
616
|
-
- **2 agents**: orchestrator, backend
|
|
617
|
-
- **1 skill**: validation
|
|
618
|
-
|
|
619
|
-
### Custom Installation
|
|
620
|
-
|
|
621
|
-
Specify exactly what you want:
|
|
622
|
-
|
|
623
|
-
```bash
|
|
624
|
-
# Custom agents and skills
|
|
625
|
-
npx @itz4blitz/agentful init --agents=orchestrator,backend,frontend --skills=validation,testing
|
|
626
|
-
|
|
627
|
-
# View installation options
|
|
628
|
-
npx @itz4blitz/agentful presets
|
|
629
|
-
```
|
|
630
|
-
|
|
631
|
-
### Shareable Configurations
|
|
632
|
-
|
|
633
|
-
Use a configuration from the web configurator:
|
|
634
|
-
|
|
635
|
-
```bash
|
|
636
|
-
npx @itz4blitz/agentful init --config=<shareable-url>
|
|
637
|
-
```
|
|
638
|
-
|
|
639
|
-
**Available Flags:**
|
|
640
|
-
- `--preset=<name>` - Use a preset configuration
|
|
641
|
-
- `--agents=<list>` - Comma-separated list of agents (orchestrator, backend, frontend, tester, reviewer, fixer, architect, product-analyzer)
|
|
642
|
-
- `--skills=<list>` - Comma-separated list of skills (validation, testing, product-tracking, conversation, product-planning, deployment)
|
|
643
|
-
- `--gates=<list>` - Comma-separated list of quality gates (types, tests, coverage, lint, security, dead-code)
|
|
644
|
-
|
|
645
|
-
Flags override preset values when both are specified.
|
|
646
58
|
|
|
647
|
-
|
|
59
|
+
# Custom: Choose components
|
|
60
|
+
npx @itz4blitz/agentful init --agents=orchestrator,backend --skills=validation
|
|
648
61
|
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
```bash
|
|
652
|
-
claude # Start Claude Code
|
|
653
|
-
/agentful-update
|
|
62
|
+
# Web configurator
|
|
63
|
+
https://agentful.app/configure
|
|
654
64
|
```
|
|
655
65
|
|
|
656
|
-
|
|
657
|
-
- Fetches the latest templates from the current agentful version
|
|
658
|
-
- Performs a 3-way merge to preserve your customizations
|
|
659
|
-
- Creates backups before applying changes
|
|
660
|
-
- Gracefully handles conflicts and reports issues
|
|
661
|
-
|
|
662
|
-
**Important**: Run `npx @itz4blitz/agentful init` only once during initial setup. For all subsequent updates, use `/agentful-update` instead of re-running init.
|
|
663
|
-
|
|
664
|
-
---
|
|
665
|
-
|
|
666
|
-
## Usage
|
|
66
|
+
## Commands
|
|
667
67
|
|
|
668
|
-
|
|
68
|
+
| Command | Description |
|
|
69
|
+
|---------|-------------|
|
|
70
|
+
| `/agentful-product` | Create and analyze product specifications |
|
|
71
|
+
| `/agentful-start` | Start autonomous development |
|
|
72
|
+
| `/agentful-status` | View completion % and current work |
|
|
73
|
+
| `/agentful-validate` | Run quality checks |
|
|
74
|
+
| `/agentful-decide` | Answer blocking decisions |
|
|
75
|
+
| `/agentful-analyze` | Generate domain-specific agents |
|
|
669
76
|
|
|
670
|
-
|
|
77
|
+
## Self-Hosted Remote Execution
|
|
671
78
|
|
|
672
|
-
|
|
79
|
+
Run agents on your infrastructure:
|
|
673
80
|
|
|
674
81
|
```bash
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
Use `/agentful-product` for guided product planning:
|
|
679
|
-
- **New projects**: Interactive Q&A creates your product spec
|
|
680
|
-
- **Existing specs**: Analyzes for gaps, ambiguities, blocking issues
|
|
681
|
-
- **Readiness scoring**: Get a score (0-100) before development
|
|
682
|
-
- **Issue resolution**: Walk through blocking issues with smart suggestions
|
|
683
|
-
- **Q&A mode**: Ask planning questions in context
|
|
684
|
-
|
|
685
|
-
#### Option B: Manual Creation
|
|
686
|
-
|
|
687
|
-
Create your specification manually in `.claude/product/`:
|
|
688
|
-
|
|
689
|
-
**Flat structure** (single file):
|
|
690
|
-
- `.claude/product/index.md` - All features in one file
|
|
691
|
-
|
|
692
|
-
**Hierarchical structure** (organized by domain):
|
|
693
|
-
- `.claude/product/index.md` - Product overview
|
|
694
|
-
- `.claude/product/domains/*/features/` - Feature definitions organized by domain
|
|
695
|
-
|
|
696
|
-
### 2. Start Development
|
|
82
|
+
# Deploy to Oracle Cloud free tier ($0/month)
|
|
83
|
+
agentful serve --auth=tailscale
|
|
697
84
|
|
|
698
|
-
|
|
699
|
-
|
|
85
|
+
# Or use SSH tunnel for local dev
|
|
86
|
+
ssh -L 3000:localhost:3000 your-server
|
|
87
|
+
agentful serve
|
|
700
88
|
```
|
|
701
89
|
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
#### New Projects (No Existing Code)
|
|
705
|
-
|
|
706
|
-
For brand new projects with no code yet:
|
|
707
|
-
|
|
708
|
-
1. **Tech Stack Selection**: On first run, the architect agent will ask about your tech stack:
|
|
709
|
-
- Frontend framework (React, Vue, Next.js, etc.)
|
|
710
|
-
- Backend framework (Express, Django, Spring Boot, etc.)
|
|
711
|
-
- Database (PostgreSQL, MongoDB, MySQL, etc.)
|
|
712
|
-
- Additional tools (ORM, testing framework, styling)
|
|
713
|
-
|
|
714
|
-
2. **Initial Agent Generation**: Specialized agents are generated using **best practices** for your chosen stack:
|
|
715
|
-
- Based on official framework documentation
|
|
716
|
-
- Using common patterns and conventions
|
|
717
|
-
- Marked with `confidence: 0.4` (template-based)
|
|
718
|
-
|
|
719
|
-
3. **First Feature Implementation**: The system builds your first feature using these template agents
|
|
90
|
+
See [deployment docs](https://agentful.app/remote-execution) for Tailscale, HMAC auth, and Oracle Cloud setup.
|
|
720
91
|
|
|
721
|
-
|
|
722
|
-
- Architect re-analyzes your **actual code**
|
|
723
|
-
- Updates agents with **your project's specific patterns**
|
|
724
|
-
- Confidence increases (`0.4 → 0.8+`)
|
|
725
|
-
- Remaining features use refined, project-specific agents
|
|
726
|
-
|
|
727
|
-
**Benefits**:
|
|
728
|
-
- Start immediately without existing code
|
|
729
|
-
- No blocking on pattern detection
|
|
730
|
-
- Learns and adapts after first implementation
|
|
731
|
-
- Continuously improving agent quality
|
|
732
|
-
|
|
733
|
-
#### Existing Projects (With Code)
|
|
734
|
-
|
|
735
|
-
For projects with existing code:
|
|
736
|
-
|
|
737
|
-
1. **Pattern Detection**: Architect samples your codebase to detect:
|
|
738
|
-
- Language and framework
|
|
739
|
-
- File organization patterns
|
|
740
|
-
- Coding conventions
|
|
741
|
-
- Import/export styles
|
|
742
|
-
- Error handling patterns
|
|
743
|
-
|
|
744
|
-
2. **Agent Generation**: Creates specialized agents matching **your exact conventions**
|
|
745
|
-
- Real code examples from your project
|
|
746
|
-
- Your specific patterns and styles
|
|
747
|
-
- High confidence (`0.8-1.0`)
|
|
748
|
-
|
|
749
|
-
### 3. Monitor Progress
|
|
92
|
+
## CI/CD Integration
|
|
750
93
|
|
|
751
|
-
|
|
752
|
-
- `/agentful-validate` - Run quality checks
|
|
753
|
-
- `/agentful-decide` - Answer blocking questions
|
|
94
|
+
Works with any platform via HTTP API or templates:
|
|
754
95
|
|
|
755
|
-
|
|
96
|
+
- [GitHub Actions](https://agentful.app/ci-integration#github-actions)
|
|
97
|
+
- [GitLab CI](https://agentful.app/ci-integration#gitlab-ci)
|
|
98
|
+
- [Jenkins](https://agentful.app/ci-integration#jenkins)
|
|
99
|
+
- [HTTP API](https://agentful.app/ci-integration#http-api) (CircleCI, Bitbucket, Travis, etc.)
|
|
756
100
|
|
|
757
|
-
##
|
|
101
|
+
## Documentation
|
|
758
102
|
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
| `/agentful-start` | Start or resume structured development |
|
|
764
|
-
| `/agentful-status` | Display progress and current state |
|
|
765
|
-
| `/agentful-validate` | Run all quality checks |
|
|
766
|
-
| `/agentful-decide` | Answer pending decisions |
|
|
767
|
-
| `/agentful-update` | Smart update mechanism - fetches latest templates and gracefully migrates changes |
|
|
768
|
-
| `/agentful-analyze` | Analyze architecture and generate specialized agents for your tech stack |
|
|
769
|
-
| `/agentful-generate` | Generate specialized agents from architecture analysis |
|
|
770
|
-
|
|
771
|
-
---
|
|
772
|
-
|
|
773
|
-
## Architecture
|
|
774
|
-
|
|
775
|
-
### Agent System
|
|
776
|
-
|
|
777
|
-
agentful uses eight specialized agents:
|
|
778
|
-
|
|
779
|
-
| Agent | Responsibility |
|
|
780
|
-
|-------|---------------|
|
|
781
|
-
| orchestrator | Coordinates work, routes tasks, tracks state |
|
|
782
|
-
| architect | Analyzes project structure and generates specialized agents<br/>• New projects: Prompts for tech stack, generates template agents<br/>• Existing projects: Detects patterns from code<br/>• Re-analyzes after first implementation in new projects |
|
|
783
|
-
| backend | Implements server-side logic, APIs, database schemas |
|
|
784
|
-
| frontend | Implements UI components, pages, state management |
|
|
785
|
-
| tester | Writes unit, integration, and end-to-end tests |
|
|
786
|
-
| reviewer | Validates code quality, security, and standards |
|
|
787
|
-
| fixer | Resolves validation failures and test errors |
|
|
788
|
-
| product-analyzer | Analyzes product specs for gaps, ambiguities, and readiness scoring |
|
|
789
|
-
|
|
790
|
-
### Quality Gates
|
|
791
|
-
|
|
792
|
-
Code changes are validated against 6 automated quality gates:
|
|
793
|
-
|
|
794
|
-
- Type checking (TypeScript, Flow, etc.)
|
|
795
|
-
- Linting (ESLint, Biome, etc.)
|
|
796
|
-
- Test execution
|
|
797
|
-
- Code coverage
|
|
798
|
-
- Security scanning
|
|
799
|
-
- Dead code detection
|
|
800
|
-
|
|
801
|
-
### State Tracking
|
|
802
|
-
|
|
803
|
-
Runtime state is stored in `.agentful/` (gitignored, managed by npm package):
|
|
804
|
-
|
|
805
|
-
- `state.json` - Current task and phase
|
|
806
|
-
- `completion.json` - Feature completion status
|
|
807
|
-
- `decisions.json` - Pending and resolved decisions
|
|
808
|
-
- `architecture.json` - Technology stack (declared or detected)
|
|
809
|
-
- New projects: Starts with declared stack (`confidence: 0.4`)
|
|
810
|
-
- Existing projects: Detected from code (`confidence: 0.8-1.0`)
|
|
811
|
-
- Re-analyzed after first implementation in new projects
|
|
812
|
-
- `conversation-history.json` - Session tracking
|
|
813
|
-
|
|
814
|
-
User configuration is stored in `.claude/` (version controlled):
|
|
815
|
-
|
|
816
|
-
- `agents/` - Agent definitions
|
|
817
|
-
- `commands/` - Slash commands
|
|
818
|
-
- `product/` - Product specifications
|
|
819
|
-
- `index.md` - Main product spec (user editable)
|
|
820
|
-
- `domains/` - Optional hierarchical structure
|
|
821
|
-
- `skills/` - Reusable skill modules
|
|
822
|
-
- `conversation/` - Intent classification and context management
|
|
823
|
-
- `product-tracking/` - Progress calculation and state tracking
|
|
824
|
-
- `product-planning/` - Product specification guidance
|
|
825
|
-
- `validation/` - Quality gate checks and tool detection
|
|
826
|
-
- `testing/` - Test strategy and coverage
|
|
827
|
-
- `deployment/` - Deployment preparation and validation
|
|
828
|
-
- `settings.json` - Project configuration
|
|
829
|
-
|
|
830
|
-
---
|
|
831
|
-
|
|
832
|
-
## Technology Support
|
|
833
|
-
|
|
834
|
-
agentful detects and adapts to your technology stack automatically:
|
|
835
|
-
|
|
836
|
-
- **Languages**: TypeScript, JavaScript, Python, Go, Rust, Java, C#, PHP, Ruby, Elixir
|
|
837
|
-
- **Frontend**: React, Vue, Angular, Svelte, Next.js, Astro, SolidJS
|
|
838
|
-
- **Backend**: Express, Fastify, NestJS, Hono, Next.js API Routes
|
|
839
|
-
- **Databases**: PostgreSQL, MySQL, SQLite, MongoDB
|
|
840
|
-
- **ORMs**: Prisma, Drizzle, TypeORM, Mongoose
|
|
841
|
-
- **Testing**: Jest, Vitest, Playwright, Cypress, Pytest, JUnit
|
|
842
|
-
|
|
843
|
-
---
|
|
103
|
+
- **Full docs**: [agentful.app](https://agentful.app)
|
|
104
|
+
- **Architecture**: [Agent system](https://agentful.app/concepts/architecture)
|
|
105
|
+
- **Agents**: [Orchestrator](https://agentful.app/agents/orchestrator), [Backend](https://agentful.app/agents/backend), [Frontend](https://agentful.app/agents/frontend), etc.
|
|
106
|
+
- **Skills**: [Product tracking](https://agentful.app/skills/product-tracking), [Validation](https://agentful.app/skills/validation), etc.
|
|
844
107
|
|
|
845
108
|
## Requirements
|
|
846
109
|
|
|
847
110
|
- Claude Code ([code.anthropic.com](https://code.anthropic.com))
|
|
848
|
-
- Node.js 22
|
|
111
|
+
- Node.js 22+
|
|
849
112
|
- Git
|
|
850
113
|
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
## Project Structure
|
|
854
|
-
|
|
855
|
-
```
|
|
856
|
-
your-project/
|
|
857
|
-
├── CLAUDE.md # Project instructions
|
|
858
|
-
├── .claude/
|
|
859
|
-
│ ├── product/ # Product specification
|
|
860
|
-
│ │ ├── index.md # Product spec (flat or hierarchical)
|
|
861
|
-
│ │ └── domains/ # Optional: hierarchical structure
|
|
862
|
-
│ ├── agents/ # Agent definitions
|
|
863
|
-
│ ├── commands/ # Slash commands
|
|
864
|
-
│ ├── skills/ # Reusable skills
|
|
865
|
-
│ └── settings.json # Configuration
|
|
866
|
-
├── .agentful/ # Runtime state (gitignored)
|
|
867
|
-
│ ├── state.json
|
|
868
|
-
│ ├── completion.json
|
|
869
|
-
│ ├── decisions.json
|
|
870
|
-
│ ├── architecture.json
|
|
871
|
-
│ └── conversation-history.json
|
|
872
|
-
└── src/ # Source code
|
|
873
|
-
```
|
|
114
|
+
## Tech Stack Support
|
|
874
115
|
|
|
875
|
-
|
|
116
|
+
Auto-detects and adapts to your stack:
|
|
876
117
|
|
|
877
|
-
|
|
118
|
+
- **Languages**: JavaScript, TypeScript, Python, Go, Rust, Java, C#, PHP, Ruby, etc.
|
|
119
|
+
- **Frontend**: React, Vue, Angular, Svelte, Next.js, Astro, SolidJS, etc.
|
|
120
|
+
- **Backend**: Express, Fastify, NestJS, Django, Flask, Spring Boot, etc.
|
|
121
|
+
- **Databases**: PostgreSQL, MySQL, MongoDB, SQLite, etc.
|
|
122
|
+
- **Testing**: Jest, Vitest, Playwright, Cypress, Pytest, JUnit, etc.
|
|
878
123
|
|
|
879
|
-
|
|
124
|
+
## Links
|
|
880
125
|
|
|
881
|
-
|
|
126
|
+
- **Docs**: [agentful.app](https://agentful.app)
|
|
127
|
+
- **GitHub**: [github.com/itz4blitz/agentful](https://github.com/itz4blitz/agentful)
|
|
128
|
+
- **Discord**: [discord.gg/SMDvJXUe](https://discord.gg/SMDvJXUe)
|
|
129
|
+
- **Issues**: [github.com/itz4blitz/agentful/issues](https://github.com/itz4blitz/agentful/issues)
|
|
130
|
+
- **NPM**: [npmjs.com/package/@itz4blitz/agentful](https://www.npmjs.com/package/@itz4blitz/agentful)
|
|
882
131
|
|
|
883
132
|
## License
|
|
884
133
|
|
|
885
134
|
MIT
|
|
886
|
-
|
|
887
|
-
---
|
|
888
|
-
|
|
889
|
-
## Links
|
|
890
|
-
|
|
891
|
-
- GitHub: [github.com/itz4blitz/agentful](https://github.com/itz4blitz/agentful)
|
|
892
|
-
- Issues: [github.com/itz4blitz/agentful/issues](https://github.com/itz4blitz/agentful/issues)
|
|
893
|
-
- NPM: [npmjs.com/package/@itz4blitz/agentful](https://www.npmjs.com/package/@itz4blitz/agentful)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itz4blitz/agentful",
|
|
3
|
-
"version": "1.1
|
|
4
|
-
"description": "Pre-configured AI agent toolkit with self-hosted remote execution.
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "Pre-configured AI agent toolkit with self-hosted remote execution. The Swiss Army Knife of AI Agents - works with any LLM, any tech stack, any platform.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"agentful": "bin/cli.js"
|
package/template/CLAUDE.md
CHANGED
|
@@ -128,6 +128,9 @@ The `reviewer` agent runs these checks automatically. The `fixer` agent resolves
|
|
|
128
128
|
**"Need to rollback or restart a feature"**
|
|
129
129
|
→ Edit completion % in `.agentful/completion.json` for specific feature, then run `/agentful-start`.
|
|
130
130
|
|
|
131
|
+
**"Want to work on multiple features in parallel?"**
|
|
132
|
+
→ Use git worktrees for branch-based parallel development, or `agentful serve` for coordinated remote execution.
|
|
133
|
+
|
|
131
134
|
## Getting Help
|
|
132
135
|
|
|
133
136
|
**Documentation**: See `.claude/commands/` for detailed command documentation
|
package/version.json
CHANGED