@itz4blitz/agentful 1.6.0 → 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 CHANGED
@@ -11,14 +11,14 @@
11
11
 
12
12
  [![Downloads](https://img.shields.io/npm/dm/@itz4blitz/agentful.svg)](https://www.npmjs.com/package/@itz4blitz/agentful)
13
13
  [![GitHub Stars](https://img.shields.io/github/stars/itz4blitz/agentful?style=social)](https://github.com/itz4blitz/agentful)
14
- [![Discord](https://img.shields.io/badge/Discord-Join%20Us-7289da)](https://discord.gg/SMDvJXUe)
14
+ [![Discord](https://img.shields.io/badge/Discord-Join%20Us-7289da)](https://discord.gg/X2tCJh76rG)
15
15
  [![Documentation](https://img.shields.io/badge/docs-agentful.app-blue)](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/SMDvJXUe)
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/SMDvJXUe)
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
- return { available: false, reason: 'Native binary detected - patching not supported', isNative: true };
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
- return { success: false, error: 'Native binary detected - patching not supported. TeammateTool patching only works with npm-installed Claude Code.' };
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.6.0",
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": {
package/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.5.1"
2
+ "version": "1.6.0"
3
3
  }