@itz4blitz/agentful 1.5.1 → 1.7.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 +3 -3
- package/lib/parallel-execution.js +4 -2
- package/lib/presets.js +1 -1
- package/package.json +9 -2
- package/version.json +1 -1
package/README.md
CHANGED
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
|
|
12
12
|
[](https://www.npmjs.com/package/@itz4blitz/agentful)
|
|
13
13
|
[](https://github.com/itz4blitz/agentful)
|
|
14
|
-
[](https://discord.gg/
|
|
14
|
+
[](https://discord.gg/X2tCJh76rG)
|
|
15
15
|
[](https://agentful.app)
|
|
16
16
|
|
|
17
17
|
**Pre-configured development toolkit for Claude Code**
|
|
18
18
|
|
|
19
19
|
Orchestrates specialized agents in parallel with inter-agent communication to build features from product specs.
|
|
20
20
|
|
|
21
|
-
[Quick Start](#quick-start) • [Documentation](https://agentful.app) • [Discord](https://discord.gg/
|
|
21
|
+
[Quick Start](#quick-start) • [Documentation](https://agentful.app) • [Discord](https://discord.gg/X2tCJh76rG)
|
|
22
22
|
|
|
23
23
|
</div>
|
|
24
24
|
|
|
@@ -104,7 +104,7 @@ Auto-detects and adapts to your stack:
|
|
|
104
104
|
|
|
105
105
|
- **Docs**: [agentful.app](https://agentful.app)
|
|
106
106
|
- **GitHub**: [github.com/itz4blitz/agentful](https://github.com/itz4blitz/agentful)
|
|
107
|
-
- **Discord**: [discord.gg/SMDvJXUe](https://discord.gg/
|
|
107
|
+
- **Discord**: [discord.gg/SMDvJXUe](https://discord.gg/X2tCJh76rG)
|
|
108
108
|
- **Issues**: [github.com/itz4blitz/agentful/issues](https://github.com/itz4blitz/agentful/issues)
|
|
109
109
|
- **NPM**: [npmjs.com/package/@itz4blitz/agentful](https://www.npmjs.com/package/@itz4blitz/agentful)
|
|
110
110
|
|
|
@@ -48,7 +48,8 @@ export function detectTeammateTool() {
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
if (isNativeBinary(claudePath)) {
|
|
51
|
-
|
|
51
|
+
// Native Claude Code binaries have built-in parallel execution via Task tool
|
|
52
|
+
return { available: true, method: 'native', isNative: true };
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
const cliContent = fs.readFileSync(claudePath, 'utf8');
|
|
@@ -151,7 +152,8 @@ export function enableTeammateTool() {
|
|
|
151
152
|
}
|
|
152
153
|
|
|
153
154
|
if (isNativeBinary(claudePath)) {
|
|
154
|
-
|
|
155
|
+
// Native binaries have built-in support, no patching needed
|
|
156
|
+
return { success: true, message: 'Native binary has built-in parallel execution support', alreadyEnabled: true };
|
|
155
157
|
}
|
|
156
158
|
|
|
157
159
|
// Backup original
|
package/lib/presets.js
CHANGED
|
@@ -212,7 +212,7 @@ export function listPresets() {
|
|
|
212
212
|
export function validateConfiguration(config) {
|
|
213
213
|
const errors = [];
|
|
214
214
|
const availableAgents = ['orchestrator', 'architect', 'backend', 'frontend', 'tester', 'reviewer', 'fixer', 'product-analyzer'];
|
|
215
|
-
const availableSkills = ['product-tracking', 'validation', 'testing', 'conversation', 'product-planning', 'deployment'];
|
|
215
|
+
const availableSkills = ['product-tracking', 'validation', 'testing', 'conversation', 'product-planning', 'deployment', 'research'];
|
|
216
216
|
const availableHooks = Object.keys(hookConfigurations);
|
|
217
217
|
|
|
218
218
|
// Always require orchestrator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itz4blitz/agentful",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Pre-configured AI toolkit with self-hosted execution - works with any LLM, any tech stack, any platform.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,14 @@
|
|
|
18
18
|
"release:dry-run": "semantic-release --dry-run",
|
|
19
19
|
"docs:dev": "vocs dev",
|
|
20
20
|
"docs:build": "vocs build",
|
|
21
|
-
"docs:preview": "vocs preview"
|
|
21
|
+
"docs:preview": "vocs preview",
|
|
22
|
+
"build:all": "npm run build:cli && npm run build:studio && npm run build:mcp",
|
|
23
|
+
"build:cli": "cd packages/cli && npm run build",
|
|
24
|
+
"build:studio": "cd packages/studio && npm run build",
|
|
25
|
+
"build:mcp": "cd packages/mcp-server && npm run build",
|
|
26
|
+
"dev:studio": "cd packages/studio && npm run dev",
|
|
27
|
+
"watch:studio": "cd packages/studio && npm run watch",
|
|
28
|
+
"install:all": "npm install && cd packages/cli && npm install && cd ../studio && npm install && cd ../mcp-server && npm install && cd ../shared && npm install"
|
|
22
29
|
},
|
|
23
30
|
"exports": {
|
|
24
31
|
".": {
|
package/version.json
CHANGED