@itz4blitz/agentful 1.2.1 → 1.4.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/README.md +20 -41
- package/bin/cli.js +41 -1056
- package/bin/hooks/architect-drift-detector.js +242 -0
- package/bin/hooks/block-file-creation.js +271 -0
- package/bin/hooks/context-awareness.js +369 -0
- package/bin/hooks/post-action-suggestions.js +75 -0
- package/bin/hooks/product-spec-watcher.js +151 -0
- package/bin/hooks/session-start.js +93 -0
- package/lib/context-awareness.js +369 -0
- package/lib/index.js +17 -14
- package/lib/init.js +99 -24
- package/lib/parallel-execution.js +235 -0
- package/lib/presets.js +80 -4
- package/lib/state-validator.README.md +442 -0
- package/lib/state-validator.example.js +262 -0
- package/lib/state-validator.js +562 -0
- package/package.json +4 -7
- package/template/.claude/agents/architect.md +2 -2
- package/template/.claude/agents/backend.md +17 -30
- package/template/.claude/agents/frontend.md +17 -39
- package/template/.claude/agents/orchestrator.md +63 -4
- package/template/.claude/agents/product-analyzer.md +1 -1
- package/template/.claude/agents/tester.md +16 -29
- package/template/.claude/commands/agentful-analyze.md +47 -59
- package/template/.claude/commands/agentful-decide.md +73 -95
- package/template/.claude/commands/agentful-generate.md +221 -14
- package/template/.claude/commands/agentful-init.md +621 -0
- package/template/.claude/commands/agentful-product.md +27 -38
- package/template/.claude/commands/agentful-start.md +133 -120
- package/template/.claude/commands/agentful-status.md +51 -68
- package/template/.claude/commands/agentful-validate.md +29 -69
- package/template/.claude/commands/agentful.md +1 -1
- package/template/.claude/product/EXAMPLES.md +2 -2
- package/template/.claude/product/index.md +1 -1
- package/template/.claude/settings.json +39 -0
- package/template/.claude/skills/research/SKILL.md +432 -0
- package/template/CLAUDE.md +226 -33
- package/template/bin/hooks/analyze-trigger.js +69 -0
- package/template/bin/hooks/architect-drift-detector.js +242 -0
- package/template/bin/hooks/block-file-creation.js +271 -0
- package/template/bin/hooks/health-check.js +153 -0
- package/template/bin/hooks/product-spec-watcher.js +151 -0
- package/version.json +1 -1
- package/bin/hooks/post-agent.js +0 -101
- package/bin/hooks/post-feature.js +0 -227
- package/bin/hooks/pre-agent.js +0 -118
- package/bin/hooks/pre-feature.js +0 -138
- package/lib/VALIDATION_README.md +0 -455
- package/lib/ci/claude-action-integration.js +0 -641
- package/lib/ci/index.js +0 -10
- package/lib/core/analyzer.js +0 -497
- package/lib/core/cli.js +0 -141
- package/lib/core/detectors/conventions.js +0 -342
- package/lib/core/detectors/framework.js +0 -276
- package/lib/core/detectors/index.js +0 -15
- package/lib/core/detectors/language.js +0 -199
- package/lib/core/detectors/patterns.js +0 -356
- package/lib/core/generator.js +0 -626
- package/lib/core/index.js +0 -9
- package/lib/core/output-parser.js +0 -458
- package/lib/core/storage.js +0 -515
- package/lib/core/templates.js +0 -556
- package/lib/pipeline/cli.js +0 -423
- package/lib/pipeline/engine.js +0 -928
- package/lib/pipeline/executor.js +0 -440
- package/lib/pipeline/index.js +0 -33
- package/lib/pipeline/integrations.js +0 -559
- package/lib/pipeline/schemas.js +0 -288
- package/lib/remote/client.js +0 -361
- package/lib/server/auth.js +0 -270
- package/lib/server/client-example.js +0 -190
- package/lib/server/executor.js +0 -477
- package/lib/server/index.js +0 -494
- package/lib/update-helpers.js +0 -505
- package/lib/validation.js +0 -460
package/README.md
CHANGED
|
@@ -14,22 +14,22 @@
|
|
|
14
14
|
[](https://discord.gg/SMDvJXUe)
|
|
15
15
|
[](https://agentful.app)
|
|
16
16
|
|
|
17
|
-
**
|
|
17
|
+
**Pre-configured development toolkit for Claude Code**
|
|
18
|
+
|
|
19
|
+
Orchestrates specialized agents in parallel with inter-agent communication to build features from product specs.
|
|
18
20
|
|
|
19
21
|
[Quick Start](#quick-start) • [Documentation](https://agentful.app) • [Discord](https://discord.gg/SMDvJXUe)
|
|
20
22
|
|
|
21
23
|
</div>
|
|
22
24
|
|
|
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.
|
|
24
|
-
|
|
25
25
|
## Features
|
|
26
26
|
|
|
27
|
-
- **
|
|
28
|
-
- **
|
|
29
|
-
- **
|
|
30
|
-
- **
|
|
31
|
-
- **
|
|
32
|
-
- **
|
|
27
|
+
- **Parallel execution** - Multiple agents work simultaneously in git worktrees (frontend + backend + tests running concurrently)
|
|
28
|
+
- **Three-tier architecture** - Core agents (pre-built), domain agents (generated for your stack), ephemeral agents (task-specific)
|
|
29
|
+
- **Shared skills** - Reusable capabilities like validation, testing, and research across all agents
|
|
30
|
+
- **Quality gates** - Automated validation for every change (types, lint, tests, coverage, security, dead code)
|
|
31
|
+
- **Tech stack agnostic** - Works with any language/framework
|
|
32
|
+
- **Human checkpoints** - You decide, agents execute
|
|
33
33
|
|
|
34
34
|
## Quick Start
|
|
35
35
|
|
|
@@ -40,10 +40,12 @@ npx @itz4blitz/agentful init
|
|
|
40
40
|
# 2. Start Claude Code
|
|
41
41
|
claude
|
|
42
42
|
|
|
43
|
-
# 3. Define product spec (
|
|
44
|
-
/agentful-
|
|
43
|
+
# 3. Define product spec (choose one):
|
|
44
|
+
/agentful-init # Interactive 7-question wizard (recommended for new users)
|
|
45
|
+
# OR
|
|
46
|
+
/agentful-product # Manual spec creation/analysis
|
|
45
47
|
|
|
46
|
-
# 4. Start development
|
|
48
|
+
# 4. Start development (auto-generates agents on first run)
|
|
47
49
|
/agentful-start
|
|
48
50
|
```
|
|
49
51
|
|
|
@@ -67,47 +69,24 @@ https://agentful.app/configure
|
|
|
67
69
|
|
|
68
70
|
| Command | Description |
|
|
69
71
|
|---------|-------------|
|
|
72
|
+
| `/agentful-init` | Interactive onboarding - 7 guided questions |
|
|
70
73
|
| `/agentful-product` | Create and analyze product specifications |
|
|
74
|
+
| `/agentful-generate` | Generate domain-specific agents for your stack |
|
|
71
75
|
| `/agentful-start` | Start autonomous development |
|
|
72
76
|
| `/agentful-status` | View completion % and current work |
|
|
73
77
|
| `/agentful-validate` | Run quality checks |
|
|
74
78
|
| `/agentful-decide` | Answer blocking decisions |
|
|
75
|
-
| `/agentful-analyze` | Generate domain-specific agents |
|
|
76
|
-
|
|
77
|
-
## Self-Hosted Remote Execution
|
|
78
|
-
|
|
79
|
-
Run agents on your infrastructure:
|
|
80
|
-
|
|
81
|
-
```bash
|
|
82
|
-
# Deploy to Oracle Cloud free tier ($0/month)
|
|
83
|
-
agentful serve --auth=tailscale
|
|
84
|
-
|
|
85
|
-
# Or use SSH tunnel for local dev
|
|
86
|
-
ssh -L 3000:localhost:3000 your-server
|
|
87
|
-
agentful serve
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
See [deployment docs](https://agentful.app/remote-execution) for Tailscale, HMAC auth, and Oracle Cloud setup.
|
|
91
|
-
|
|
92
|
-
## CI/CD Integration
|
|
93
|
-
|
|
94
|
-
Works with any platform via HTTP API or templates:
|
|
95
|
-
|
|
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.)
|
|
100
79
|
|
|
101
80
|
## Documentation
|
|
102
81
|
|
|
103
82
|
- **Full docs**: [agentful.app](https://agentful.app)
|
|
104
|
-
- **Architecture**: [
|
|
105
|
-
- **Agents**: [Orchestrator](https://agentful.app/agents/orchestrator), [Backend](https://agentful.app/agents/backend), [Frontend](https://agentful.app/agents/frontend),
|
|
106
|
-
- **Skills**: [
|
|
83
|
+
- **Architecture**: [Three-tier system](https://agentful.app/concepts/architecture) | [Background agents](https://agentful.app/concepts/background-agents)
|
|
84
|
+
- **Agents**: [Orchestrator](https://agentful.app/agents/orchestrator), [Backend](https://agentful.app/agents/backend), [Frontend](https://agentful.app/agents/frontend), [Reviewer](https://agentful.app/agents/reviewer), [Fixer](https://agentful.app/agents/fixer)
|
|
85
|
+
- **Skills**: [Validation](https://agentful.app/skills/validation), [Testing](https://agentful.app/skills/testing), [Research](https://agentful.app/skills/research), [Product Planning](https://agentful.app/skills/product-planning)
|
|
107
86
|
|
|
108
87
|
## Requirements
|
|
109
88
|
|
|
110
|
-
- Claude Code
|
|
89
|
+
- [Claude Code](https://claude.ai/download)
|
|
111
90
|
- Node.js 22+
|
|
112
91
|
- Git
|
|
113
92
|
|