@itz4blitz/agentful 1.2.0 → 1.3.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 +28 -1
- package/bin/cli.js +11 -1055
- package/bin/hooks/block-file-creation.js +271 -0
- package/bin/hooks/product-spec-watcher.js +151 -0
- package/lib/index.js +0 -11
- package/lib/init.js +2 -21
- package/lib/parallel-execution.js +235 -0
- package/lib/presets.js +26 -4
- 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-generate.md +221 -14
- package/template/.claude/commands/agentful-init.md +621 -0
- package/template/.claude/commands/agentful-product.md +1 -1
- package/template/.claude/commands/agentful-start.md +99 -1
- package/template/.claude/product/EXAMPLES.md +2 -2
- package/template/.claude/product/index.md +1 -1
- package/template/.claude/settings.json +22 -0
- package/template/.claude/skills/research/SKILL.md +432 -0
- package/template/CLAUDE.md +5 -6
- package/template/bin/hooks/architect-drift-detector.js +242 -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
|
@@ -43,7 +43,10 @@ claude
|
|
|
43
43
|
# 3. Define product spec (interactive)
|
|
44
44
|
/agentful-product
|
|
45
45
|
|
|
46
|
-
# 4.
|
|
46
|
+
# 4. Generate specialized agents
|
|
47
|
+
/agentful-generate
|
|
48
|
+
|
|
49
|
+
# 5. Start development
|
|
47
50
|
/agentful-start
|
|
48
51
|
```
|
|
49
52
|
|
|
@@ -89,6 +92,29 @@ agentful serve
|
|
|
89
92
|
|
|
90
93
|
See [deployment docs](https://agentful.app/remote-execution) for Tailscale, HMAC auth, and Oracle Cloud setup.
|
|
91
94
|
|
|
95
|
+
## MCP Server
|
|
96
|
+
|
|
97
|
+
Use agentful with any MCP-compatible AI tool (Claude Code, Kiro, Aider):
|
|
98
|
+
|
|
99
|
+
```json
|
|
100
|
+
{
|
|
101
|
+
"mcpServers": {
|
|
102
|
+
"agentful": {
|
|
103
|
+
"command": "npx",
|
|
104
|
+
"args": ["-y", "@itz4blitz/agentful-mcp"]
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
**Features**:
|
|
111
|
+
- Cross-tool compatibility (works with any MCP client)
|
|
112
|
+
- Launch specialized agents via MCP tools
|
|
113
|
+
- Access product specs and state via MCP resources
|
|
114
|
+
- Real-time execution status updates
|
|
115
|
+
|
|
116
|
+
See [MCP Integration Guide](./docs/mcp-integration.md) for setup with different AI tools.
|
|
117
|
+
|
|
92
118
|
## CI/CD Integration
|
|
93
119
|
|
|
94
120
|
Works with any platform via HTTP API or templates:
|
|
@@ -101,6 +127,7 @@ Works with any platform via HTTP API or templates:
|
|
|
101
127
|
## Documentation
|
|
102
128
|
|
|
103
129
|
- **Full docs**: [agentful.app](https://agentful.app)
|
|
130
|
+
- **MCP Integration**: [MCP Server Guide](./mcp/README.md) | [Integration Guide](./docs/mcp-integration.md)
|
|
104
131
|
- **Architecture**: [Agent system](https://agentful.app/concepts/architecture)
|
|
105
132
|
- **Agents**: [Orchestrator](https://agentful.app/agents/orchestrator), [Backend](https://agentful.app/agents/backend), [Frontend](https://agentful.app/agents/frontend), etc.
|
|
106
133
|
- **Skills**: [Product tracking](https://agentful.app/skills/product-tracking), [Validation](https://agentful.app/skills/validation), etc.
|