@itz4blitz/agentful 0.1.5 → 0.1.7
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/bin/cli.js +3 -1
- package/package.json +3 -2
- package/version.json +3 -0
package/bin/cli.js
CHANGED
|
@@ -131,6 +131,9 @@ async function initagentful(options = {}) {
|
|
|
131
131
|
const autoGenerateAgents = options.generateAgents || false;
|
|
132
132
|
const autoGenerateDomains = options.generateDomains || false;
|
|
133
133
|
|
|
134
|
+
// Initialize analysis variable (will be populated later)
|
|
135
|
+
let analysis = null;
|
|
136
|
+
|
|
134
137
|
// Check if already initialized
|
|
135
138
|
if (fs.existsSync(claudeDir)) {
|
|
136
139
|
log(colors.yellow, '⚠️ .claude/ directory already exists!');
|
|
@@ -337,7 +340,6 @@ ${analysis && analysis.domains.length > 0 ? analysis.domains.map((d, i) => `${i
|
|
|
337
340
|
checkGitignore();
|
|
338
341
|
|
|
339
342
|
// Perform smart project analysis (unless explicitly disabled)
|
|
340
|
-
let analysis = null;
|
|
341
343
|
if (smart) {
|
|
342
344
|
console.log('');
|
|
343
345
|
log(colors.bright, '🔍 Analyzing your project...');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itz4blitz/agentful",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Autonomous product development kit for Claude Code with smart product analysis and natural conversation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
"bin/",
|
|
20
20
|
"lib/",
|
|
21
21
|
"template/",
|
|
22
|
-
".claude/"
|
|
22
|
+
".claude/",
|
|
23
|
+
"version.json"
|
|
23
24
|
],
|
|
24
25
|
"keywords": [
|
|
25
26
|
"claude-code",
|
package/version.json
ADDED