claude-flow-novice 1.3.0 → 1.3.2
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/.claude-flow-novice/preferences/generation.json +147 -0
- package/.claude-flow-novice/preferences/language-configs/javascript.json +51 -0
- package/.claude-flow-novice/preferences/language-configs/python.json +50 -0
- package/.claude-flow-novice/preferences/language-configs/rust.json +237 -0
- package/.claude-flow-novice/preferences/language-configs/typescript.json +54 -0
- package/.claude-flow-novice/preferences/project-local.json +91 -0
- package/.claude-flow-novice/preferences/resource-delegation.json +120 -0
- package/.claude-flow-novice/preferences/team-shared.json +195 -0
- package/.claude-flow-novice/preferences/user-global.json +247 -0
- package/.claude-flow-novice/templates/claude-md-templates/CLAUDE-JAVASCRIPT.md +769 -0
- package/.claude-flow-novice/templates/claude-md-templates/CLAUDE-PYTHON.md +1214 -0
- package/.claude-flow-novice/templates/claude-md-templates/CLAUDE-RUST.md +475 -0
- package/.claude-flow-novice/templates/claude-md-templates/CLAUDE-TYPESCRIPT.md +851 -0
- package/.claude-flow-novice/templates/claude-md-templates/README.md +263 -0
- package/CLAUDE.md +81 -0
- package/README-NPM.md +0 -0
- package/package.json +11 -7
- package/scripts/build/README.md +167 -0
- package/scripts/build/build-config.js +27 -0
- package/scripts/build/build-prompt-copier.sh +30 -0
- package/scripts/build/performance-monitor.js +869 -0
- package/scripts/build/prepare-publish.js +150 -0
- package/scripts/build/typescript-fixer.js +621 -0
- package/scripts/build/unified-builder.sh +428 -0
- package/scripts/build/update-bin-version.js +32 -0
- package/scripts/dev/README.md +264 -0
- package/scripts/dev/claude-flow-wrapper.sh +35 -0
- package/scripts/dev/claude-monitor.py +419 -0
- package/scripts/dev/claude-sparc.sh +562 -0
- package/scripts/dev/claude-wrapper.sh +17 -0
- package/scripts/dev/demo-phase3-compliance.js +172 -0
- package/scripts/dev/demo-task-system.ts +224 -0
- package/scripts/dev/deployment-validator.js +315 -0
- package/scripts/dev/spawn-claude-terminal.sh +32 -0
- package/scripts/dev/start-portal.sh +506 -0
- package/scripts/dev/start-web-ui.js +15 -0
- package/scripts/dev/stop-portal.sh +311 -0
- package/scripts/dev/validate-examples.ts +288 -0
- package/scripts/dev/validate-phase2.cjs +451 -0
- package/scripts/dev/validate-phase2.js +785 -0
- package/scripts/dev/validate-phase3.cjs +208 -0
- package/scripts/dev/validate-security-remediation.js +1 -0
- package/scripts/legacy/README.md +272 -0
- package/scripts/legacy/batch-fix-ts.sh +54 -0
- package/scripts/legacy/build-migration.sh +105 -0
- package/scripts/legacy/build-monitor.js +209 -0
- package/scripts/legacy/build-with-filter.sh +84 -0
- package/scripts/legacy/build-workaround.sh +71 -0
- package/scripts/legacy/fix-ts-advanced.js +358 -0
- package/scripts/legacy/fix-ts-final.sh +50 -0
- package/scripts/legacy/fix-ts-targeted.sh +49 -0
- package/scripts/legacy/fix-typescript-errors.js +305 -0
- package/scripts/legacy/force-build.sh +63 -0
- package/scripts/legacy/optimize-performance.js +400 -0
- package/scripts/legacy/performance-monitor.js +263 -0
- package/scripts/legacy/performance-monitoring.js +532 -0
- package/scripts/legacy/performance-test-runner.js +645 -0
- package/scripts/legacy/quick-fix-ts.js +281 -0
- package/scripts/legacy/safe-build.sh +63 -0
- package/scripts/migration/README.md +434 -0
- package/scripts/migration/install-arm64.js +78 -0
- package/scripts/migration/install.js +83 -0
- package/scripts/migration/migrate-hooks.js +173 -0
- package/scripts/migration/migration-examples.ts +318 -0
- package/scripts/optimization/build-optimizer.js +438 -0
- package/scripts/optimization/config-validator.js +761 -0
- package/scripts/optimization/test-optimization.js +432 -0
- package/scripts/optimization/unified-activation.js +839 -0
- package/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
- package/scripts/performance/sqlite-enhanced-activation.sh +583 -0
- package/scripts/performance/test-enhanced-backend.sh +504 -0
- package/scripts/performance-test-runner.js +698 -0
- package/scripts/security/README.md +339 -0
- package/scripts/security/install-git-hooks.sh +132 -0
- package/scripts/security/ruv-swarm-safe.js +74 -0
- package/scripts/test/README.md +236 -0
- package/scripts/test/check-links.ts +274 -0
- package/scripts/test/check-performance-regression.ts +168 -0
- package/scripts/test/coverage-report.ts +692 -0
- package/scripts/test/generate-swarm-tests.js +633 -0
- package/scripts/test/integration-test-validation.cjs +253 -0
- package/scripts/test/load-test-swarm.js +576 -0
- package/scripts/test/run-phase3-compliance-tests.js +427 -0
- package/scripts/test/test-batch-tasks.ts +29 -0
- package/scripts/test/test-byzantine-resolution.js +246 -0
- package/scripts/test/test-claude-spawn-options.sh +63 -0
- package/scripts/test/test-cli-wizard.js +331 -0
- package/scripts/test/test-comprehensive.js +401 -0
- package/scripts/test/test-coordination-features.ts +238 -0
- package/scripts/test/test-fallback-systems.js +276 -0
- package/scripts/test/test-init-command.ts +302 -0
- package/scripts/test/test-mcp.ts +251 -0
- package/scripts/test/test-runner.ts +568 -0
- package/scripts/test/test-swarm-integration.sh +92 -0
- package/scripts/test/test-swarm.ts +142 -0
- package/scripts/test/validation-summary.ts +408 -0
- package/scripts/utils/README.md +261 -0
- package/scripts/utils/clean-build-artifacts.sh +94 -0
- package/scripts/utils/cleanup-root.sh +69 -0
- package/scripts/utils/fix-cliffy-imports.js +307 -0
- package/scripts/utils/fix-duplicate-imports.js +114 -0
- package/scripts/utils/fix-error-handling.cjs +70 -0
- package/scripts/utils/fix-import-paths.js +104 -0
- package/scripts/utils/fix-imports.js +116 -0
- package/scripts/utils/fix-shebang.js +78 -0
- package/scripts/utils/fix-test-modules.js +27 -0
- package/scripts/utils/fix-timezone-issue-246.js +200 -0
- package/scripts/utils/fix-ts-comprehensive.py +182 -0
- package/scripts/utils/fix-ts-targeted-batch.js +250 -0
- package/scripts/utils/remove-benchmark-conflicts.sh +140 -0
- package/scripts/utils/simple-test-fixer.js +190 -0
- package/scripts/utils/validate-metrics-structure.cjs +144 -0
- package/scripts/verify-mcp-server.js +86 -0
- package/src/cli/simple-commands/__tests__/agent.test.js +291 -0
- package/src/cli/simple-commands/__tests__/memory.test.js +8 -0
- package/src/cli/simple-commands/__tests__/swarm.test.js +371 -0
- package/src/cli/simple-commands/__tests__/task.test.js +8 -0
- package/src/cli/simple-commands/agent.js +216 -0
- package/src/cli/simple-commands/analysis.js +570 -0
- package/src/cli/simple-commands/automation-executor.js +1603 -0
- package/src/cli/simple-commands/automation.js +627 -0
- package/src/cli/simple-commands/batch-manager.js +338 -0
- package/src/cli/simple-commands/claude-telemetry.js +311 -0
- package/src/cli/simple-commands/claude-track.js +102 -0
- package/src/cli/simple-commands/concurrent-display.js +348 -0
- package/src/cli/simple-commands/config.js +319 -0
- package/src/cli/simple-commands/coordination.js +307 -0
- package/src/cli/simple-commands/enhanced-ui-views.js +654 -0
- package/src/cli/simple-commands/enhanced-webui-complete.js +1038 -0
- package/src/cli/simple-commands/fix-hook-variables.js +363 -0
- package/src/cli/simple-commands/github/gh-coordinator.js +605 -0
- package/src/cli/simple-commands/github/github-api.js +624 -0
- package/src/cli/simple-commands/github/init.js +543 -0
- package/src/cli/simple-commands/github.js +377 -0
- package/src/cli/simple-commands/goal.js +145 -0
- package/src/cli/simple-commands/hive-mind/auto-save-middleware.js +311 -0
- package/src/cli/simple-commands/hive-mind/communication.js +740 -0
- package/src/cli/simple-commands/hive-mind/core.js +1031 -0
- package/src/cli/simple-commands/hive-mind/db-optimizer.js +872 -0
- package/src/cli/simple-commands/hive-mind/mcp-wrapper.js +1364 -0
- package/src/cli/simple-commands/hive-mind/memory.js +1292 -0
- package/src/cli/simple-commands/hive-mind/performance-optimizer.js +618 -0
- package/src/cli/simple-commands/hive-mind/performance-test.js +373 -0
- package/src/cli/simple-commands/hive-mind/queen.js +809 -0
- package/src/cli/simple-commands/hive-mind/session-manager.js +1223 -0
- package/src/cli/simple-commands/hive-mind-optimize.js +361 -0
- package/src/cli/simple-commands/hive-mind-wizard.js +281 -0
- package/src/cli/simple-commands/hive-mind.js +3112 -0
- package/src/cli/simple-commands/hive.js +140 -0
- package/src/cli/simple-commands/hook-safety.js +671 -0
- package/src/cli/simple-commands/hooks.js +1268 -0
- package/src/cli/simple-commands/init/.claude/checkpoints/1756224542.json +7 -0
- package/src/cli/simple-commands/init/.claude/checkpoints/1756224544.json +8 -0
- package/src/cli/simple-commands/init/README.md +106 -0
- package/src/cli/simple-commands/init/VALIDATION_ROLLBACK.md +488 -0
- package/src/cli/simple-commands/init/agent-copier.js +347 -0
- package/src/cli/simple-commands/init/batch-init.js +663 -0
- package/src/cli/simple-commands/init/claude-commands/claude-flow-commands.js +438 -0
- package/src/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js +876 -0
- package/src/cli/simple-commands/init/claude-commands/optimized-slash-commands.js +356 -0
- package/src/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js +501 -0
- package/src/cli/simple-commands/init/claude-commands/slash-commands.js +57 -0
- package/src/cli/simple-commands/init/claude-commands/sparc-commands.js +296 -0
- package/src/cli/simple-commands/init/copy-revised-templates.js +175 -0
- package/src/cli/simple-commands/init/executable-wrapper.js +122 -0
- package/src/cli/simple-commands/init/gitignore-updater.js +137 -0
- package/src/cli/simple-commands/init/help.js +110 -0
- package/src/cli/simple-commands/init/hive-mind-init.js +749 -0
- package/src/cli/simple-commands/init/index.js +1953 -0
- package/src/cli/simple-commands/init/performance-monitor.js +344 -0
- package/src/cli/simple-commands/init/rollback/backup-manager.js +542 -0
- package/src/cli/simple-commands/init/rollback/index.js +399 -0
- package/src/cli/simple-commands/init/rollback/recovery-manager.js +778 -0
- package/src/cli/simple-commands/init/rollback/rollback-executor.js +521 -0
- package/src/cli/simple-commands/init/rollback/state-tracker.js +486 -0
- package/src/cli/simple-commands/init/sparc/roo-readme.js +61 -0
- package/src/cli/simple-commands/init/sparc/roomodes-config.js +102 -0
- package/src/cli/simple-commands/init/sparc/workflows.js +40 -0
- package/src/cli/simple-commands/init/sparc-structure.js +68 -0
- package/src/cli/simple-commands/init/template-copier.js +640 -0
- package/src/cli/simple-commands/init/templates/CLAUDE.md +1185 -0
- package/src/cli/simple-commands/init/templates/CLAUDE.md.optimized +265 -0
- package/src/cli/simple-commands/init/templates/claude-flow-universal +81 -0
- package/src/cli/simple-commands/init/templates/claude-flow.bat +18 -0
- package/src/cli/simple-commands/init/templates/claude-flow.ps1 +24 -0
- package/src/cli/simple-commands/init/templates/claude-md.js +1101 -0
- package/src/cli/simple-commands/init/templates/commands/analysis/bottleneck-detect.md +162 -0
- package/src/cli/simple-commands/init/templates/commands/automation/auto-agent.md +122 -0
- package/src/cli/simple-commands/init/templates/commands/coordination/swarm-init.md +85 -0
- package/src/cli/simple-commands/init/templates/commands/github/github-swarm.md +121 -0
- package/src/cli/simple-commands/init/templates/commands/helpers/standard-checkpoint-hooks.sh +179 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/notification.md +113 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/post-command.md +116 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/post-edit.md +117 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/post-task.md +112 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-command.md +113 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-edit.md +113 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-search.md +112 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-task.md +111 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/session-end.md +118 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/session-restore.md +118 -0
- package/src/cli/simple-commands/init/templates/commands/hooks/session-start.md +117 -0
- package/src/cli/simple-commands/init/templates/coordination-md.js +340 -0
- package/src/cli/simple-commands/init/templates/coordination.md +16 -0
- package/src/cli/simple-commands/init/templates/enhanced-templates.js +2347 -0
- package/src/cli/simple-commands/init/templates/github-safe-enhanced.js +331 -0
- package/src/cli/simple-commands/init/templates/github-safe.js +106 -0
- package/src/cli/simple-commands/init/templates/memory-bank-md.js +259 -0
- package/src/cli/simple-commands/init/templates/memory-bank.md +16 -0
- package/src/cli/simple-commands/init/templates/readme-files.js +72 -0
- package/src/cli/simple-commands/init/templates/safe-hook-patterns.js +430 -0
- package/src/cli/simple-commands/init/templates/settings.json +109 -0
- package/src/cli/simple-commands/init/templates/settings.json.enhanced +35 -0
- package/src/cli/simple-commands/init/templates/sparc-modes.js +1401 -0
- package/src/cli/simple-commands/init/templates/verification-claude-md.js +432 -0
- package/src/cli/simple-commands/init/validation/config-validator.js +354 -0
- package/src/cli/simple-commands/init/validation/health-checker.js +599 -0
- package/src/cli/simple-commands/init/validation/index.js +388 -0
- package/src/cli/simple-commands/init/validation/mode-validator.js +387 -0
- package/src/cli/simple-commands/init/validation/post-init-validator.js +390 -0
- package/src/cli/simple-commands/init/validation/pre-init-validator.js +290 -0
- package/src/cli/simple-commands/init/validation/test-runner.js +488 -0
- package/src/cli/simple-commands/init.js +4 -0
- package/src/cli/simple-commands/mcp-health.js +163 -0
- package/src/cli/simple-commands/mcp-integration-layer.js +689 -0
- package/src/cli/simple-commands/mcp.js +420 -0
- package/src/cli/simple-commands/memory-consolidation.js +631 -0
- package/src/cli/simple-commands/memory.js +345 -0
- package/src/cli/simple-commands/migrate-hooks.js +63 -0
- package/src/cli/simple-commands/monitor.js +417 -0
- package/src/cli/simple-commands/neural.js +148 -0
- package/src/cli/simple-commands/pair-autofix-only.js +755 -0
- package/src/cli/simple-commands/pair-basic.js +751 -0
- package/src/cli/simple-commands/pair-old.js +623 -0
- package/src/cli/simple-commands/pair-working.js +849 -0
- package/src/cli/simple-commands/pair.js +849 -0
- package/src/cli/simple-commands/performance-hooks.js +149 -0
- package/src/cli/simple-commands/performance-metrics.js +601 -0
- package/src/cli/simple-commands/process-ui-enhanced.js +821 -0
- package/src/cli/simple-commands/process-ui.js +274 -0
- package/src/cli/simple-commands/realtime-update-system.js +659 -0
- package/src/cli/simple-commands/sparc/architecture.js +1750 -0
- package/src/cli/simple-commands/sparc/commands.js +575 -0
- package/src/cli/simple-commands/sparc/completion.js +1831 -0
- package/src/cli/simple-commands/sparc/coordinator.js +1045 -0
- package/src/cli/simple-commands/sparc/index.js +321 -0
- package/src/cli/simple-commands/sparc/phase-base.js +430 -0
- package/src/cli/simple-commands/sparc/pseudocode.js +984 -0
- package/src/cli/simple-commands/sparc/refinement.js +1856 -0
- package/src/cli/simple-commands/sparc/specification.js +736 -0
- package/src/cli/simple-commands/sparc-modes/architect.js +125 -0
- package/src/cli/simple-commands/sparc-modes/ask.js +126 -0
- package/src/cli/simple-commands/sparc-modes/code.js +148 -0
- package/src/cli/simple-commands/sparc-modes/debug.js +112 -0
- package/src/cli/simple-commands/sparc-modes/devops.js +137 -0
- package/src/cli/simple-commands/sparc-modes/docs-writer.js +38 -0
- package/src/cli/simple-commands/sparc-modes/generic.js +34 -0
- package/src/cli/simple-commands/sparc-modes/index.js +201 -0
- package/src/cli/simple-commands/sparc-modes/integration.js +55 -0
- package/src/cli/simple-commands/sparc-modes/mcp.js +38 -0
- package/src/cli/simple-commands/sparc-modes/monitoring.js +38 -0
- package/src/cli/simple-commands/sparc-modes/optimization.js +38 -0
- package/src/cli/simple-commands/sparc-modes/security-review.js +130 -0
- package/src/cli/simple-commands/sparc-modes/sparc-orchestrator.js +167 -0
- package/src/cli/simple-commands/sparc-modes/spec-pseudocode.js +38 -0
- package/src/cli/simple-commands/sparc-modes/supabase-admin.js +149 -0
- package/src/cli/simple-commands/sparc-modes/swarm.js +436 -0
- package/src/cli/simple-commands/sparc-modes/tdd.js +112 -0
- package/src/cli/simple-commands/sparc-modes/tutorial.js +277 -0
- package/src/cli/simple-commands/sparc.js +530 -0
- package/src/cli/simple-commands/start-ui.js +147 -0
- package/src/cli/simple-commands/start-wrapper.js +285 -0
- package/src/cli/simple-commands/start.js +2 -0
- package/src/cli/simple-commands/status.js +303 -0
- package/src/cli/simple-commands/stream-chain-clean.js +221 -0
- package/src/cli/simple-commands/stream-chain-fixed.js +89 -0
- package/src/cli/simple-commands/stream-chain-real.js +408 -0
- package/src/cli/simple-commands/stream-chain-working.js +323 -0
- package/src/cli/simple-commands/stream-chain.js +491 -0
- package/src/cli/simple-commands/stream-processor.js +340 -0
- package/src/cli/simple-commands/swarm-executor.js +253 -0
- package/src/cli/simple-commands/swarm-metrics-integration.js +371 -0
- package/src/cli/simple-commands/swarm-ui.js +741 -0
- package/src/cli/simple-commands/swarm-webui-integration.js +311 -0
- package/src/cli/simple-commands/swarm.js +2277 -0
- package/src/cli/simple-commands/task.js +228 -0
- package/src/cli/simple-commands/templates/mle-star-workflow.json +294 -0
- package/src/cli/simple-commands/timestamp-fix.js +104 -0
- package/src/cli/simple-commands/token-tracker.js +372 -0
- package/src/cli/simple-commands/tool-execution-framework.js +555 -0
- package/src/cli/simple-commands/train-and-stream.js +354 -0
- package/src/cli/simple-commands/training-pipeline.js +874 -0
- package/src/cli/simple-commands/training.js +288 -0
- package/src/cli/simple-commands/verification-hooks.js +336 -0
- package/src/cli/simple-commands/verification-integration.js +464 -0
- package/src/cli/simple-commands/verification-training-integration.js +646 -0
- package/src/cli/simple-commands/verification.js +551 -0
- package/src/cli/simple-commands/web-server.js +929 -0
- package/src/cli/simple-commands/webui-validator.js +136 -0
- package/src/language/README.md +503 -0
- package/src/language/claude-md-generator.js +618 -0
- package/src/language/cli.js +422 -0
- package/src/language/example.js +347 -0
- package/src/language/integration-system.js +619 -0
- package/src/language/language-detector.js +581 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"resourceDelegation": {
|
|
3
|
+
"mode": "adaptive",
|
|
4
|
+
"description": "Controls how resource-heavy commands are executed across swarm agents",
|
|
5
|
+
"options": {
|
|
6
|
+
"distributed": {
|
|
7
|
+
"name": "Distributed Execution",
|
|
8
|
+
"description": "All agents execute heavy commands simultaneously",
|
|
9
|
+
"pros": ["Faster parallel execution", "Better resource utilization"],
|
|
10
|
+
"cons": ["Higher system load", "Potential resource conflicts"],
|
|
11
|
+
"bestFor": ["Light workloads", "High-performance systems", "Independent tasks"]
|
|
12
|
+
},
|
|
13
|
+
"single-delegate": {
|
|
14
|
+
"name": "Single Agent Delegation",
|
|
15
|
+
"description": "One agent executes heavy commands, shares results with others",
|
|
16
|
+
"pros": ["Lower system load", "Prevents resource conflicts", "Better reliability"],
|
|
17
|
+
"cons": ["Sequential execution", "Single point of failure"],
|
|
18
|
+
"bestFor": ["Resource-constrained systems", "Complex builds", "Heavy test suites"]
|
|
19
|
+
},
|
|
20
|
+
"adaptive": {
|
|
21
|
+
"name": "Adaptive Resource Management",
|
|
22
|
+
"description": "Automatically chooses the best strategy based on current conditions",
|
|
23
|
+
"pros": ["Optimal performance", "Dynamic adaptation", "Balanced resource usage"],
|
|
24
|
+
"cons": ["Slight overhead for decision-making"],
|
|
25
|
+
"bestFor": ["Most use cases", "Variable workloads", "Production environments"]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"heavyCommandThreshold": 5000,
|
|
29
|
+
"maxConcurrentHeavyCommands": 2,
|
|
30
|
+
"preferredDelegate": "auto",
|
|
31
|
+
"resourceLimits": {
|
|
32
|
+
"cpu": 80,
|
|
33
|
+
"memory": 75,
|
|
34
|
+
"network": 90,
|
|
35
|
+
"description": "System resource thresholds that trigger single-delegate mode"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"commandCategories": {
|
|
39
|
+
"test": {
|
|
40
|
+
"commands": ["npm test", "npm run test", "jest", "vitest", "pytest", "cargo test", "go test", "mvn test"],
|
|
41
|
+
"defaultStrategy": "single-delegate",
|
|
42
|
+
"reasoning": "Test suites often require substantial resources and can conflict when run in parallel"
|
|
43
|
+
},
|
|
44
|
+
"build": {
|
|
45
|
+
"commands": ["npm run build", "webpack", "vite build", "tsc", "cargo build", "go build", "gradle build"],
|
|
46
|
+
"defaultStrategy": "adaptive",
|
|
47
|
+
"reasoning": "Build processes vary in resource requirements; adaptive mode optimizes based on conditions"
|
|
48
|
+
},
|
|
49
|
+
"compile": {
|
|
50
|
+
"commands": ["tsc", "javac", "gcc", "clang", "rustc"],
|
|
51
|
+
"defaultStrategy": "single-delegate",
|
|
52
|
+
"reasoning": "Compilation can be memory-intensive and benefit from dedicated resources"
|
|
53
|
+
},
|
|
54
|
+
"lint": {
|
|
55
|
+
"commands": ["eslint", "prettier", "flake8", "black", "clippy"],
|
|
56
|
+
"defaultStrategy": "distributed",
|
|
57
|
+
"reasoning": "Linting is typically lightweight and can be safely distributed"
|
|
58
|
+
},
|
|
59
|
+
"package": {
|
|
60
|
+
"commands": ["npm pack", "docker build", "zip", "tar"],
|
|
61
|
+
"defaultStrategy": "single-delegate",
|
|
62
|
+
"reasoning": "Package creation often involves file system operations that can conflict"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"delegateSelection": {
|
|
66
|
+
"strategies": {
|
|
67
|
+
"auto": "Automatically select best agent based on performance metrics and current load",
|
|
68
|
+
"performance-optimized": "Always select the highest-performing agent",
|
|
69
|
+
"round-robin": "Rotate delegate selection among available agents",
|
|
70
|
+
"load-balanced": "Select agent with lowest current resource utilization",
|
|
71
|
+
"capability-based": "Select agent with most relevant capabilities for the task"
|
|
72
|
+
},
|
|
73
|
+
"selectionCriteria": {
|
|
74
|
+
"performanceWeight": 0.4,
|
|
75
|
+
"loadWeight": 0.3,
|
|
76
|
+
"capabilityWeight": 0.2,
|
|
77
|
+
"availabilityWeight": 0.1
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"monitoring": {
|
|
81
|
+
"trackPerformance": true,
|
|
82
|
+
"collectMetrics": true,
|
|
83
|
+
"alertThresholds": {
|
|
84
|
+
"highCpuUsage": 85,
|
|
85
|
+
"highMemoryUsage": 90,
|
|
86
|
+
"executionTimeout": 300000,
|
|
87
|
+
"consecutiveFailures": 3
|
|
88
|
+
},
|
|
89
|
+
"optimizationHints": {
|
|
90
|
+
"enableAutoTuning": true,
|
|
91
|
+
"suggestConfigChanges": true,
|
|
92
|
+
"trackSuccessPatterns": true
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"examples": {
|
|
96
|
+
"scenarios": [
|
|
97
|
+
{
|
|
98
|
+
"name": "Large Test Suite",
|
|
99
|
+
"description": "Running comprehensive test suites with high memory requirements",
|
|
100
|
+
"recommendedMode": "single-delegate",
|
|
101
|
+
"commands": ["npm run test:all", "pytest tests/", "cargo test --release"],
|
|
102
|
+
"reasoning": "Prevents memory conflicts and ensures consistent test environment"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "Multi-Package Build",
|
|
106
|
+
"description": "Building multiple packages or modules simultaneously",
|
|
107
|
+
"recommendedMode": "adaptive",
|
|
108
|
+
"commands": ["lerna run build", "nx run-many --target=build"],
|
|
109
|
+
"reasoning": "Adapts to system load and optimizes parallel vs sequential execution"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "Development Workflow",
|
|
113
|
+
"description": "Standard development tasks like linting and type checking",
|
|
114
|
+
"recommendedMode": "distributed",
|
|
115
|
+
"commands": ["eslint src/", "prettier --check", "tsc --noEmit"],
|
|
116
|
+
"reasoning": "These lightweight tasks benefit from parallel execution"
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
}
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
{
|
|
2
|
+
"teamCollaboration": {
|
|
3
|
+
"description": "Team collaboration and preference sharing settings",
|
|
4
|
+
"enabled": false,
|
|
5
|
+
"currentTeam": null,
|
|
6
|
+
"memberInfo": {
|
|
7
|
+
"id": null,
|
|
8
|
+
"name": null,
|
|
9
|
+
"role": "member",
|
|
10
|
+
"joinedAt": null
|
|
11
|
+
},
|
|
12
|
+
"syncSettings": {
|
|
13
|
+
"autoSync": true,
|
|
14
|
+
"syncFrequency": "on-change",
|
|
15
|
+
"conflictResolution": "prompt",
|
|
16
|
+
"backupBeforeSync": true
|
|
17
|
+
},
|
|
18
|
+
"collaborationModes": {
|
|
19
|
+
"developer": {
|
|
20
|
+
"name": "Developer Team",
|
|
21
|
+
"description": "Optimized for development teams with focus on code quality",
|
|
22
|
+
"sharedPreferences": [
|
|
23
|
+
"tone.style",
|
|
24
|
+
"documentation.verbosity",
|
|
25
|
+
"languages.auto_setup_linting",
|
|
26
|
+
"resourceDelegation.mode",
|
|
27
|
+
"customizations.message_filters"
|
|
28
|
+
],
|
|
29
|
+
"benefits": [
|
|
30
|
+
"Consistent code quality standards",
|
|
31
|
+
"Shared linting and formatting rules",
|
|
32
|
+
"Unified build and test processes",
|
|
33
|
+
"Standardized agent behavior"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"research": {
|
|
37
|
+
"name": "Research Team",
|
|
38
|
+
"description": "Optimized for research teams with comprehensive documentation",
|
|
39
|
+
"sharedPreferences": [
|
|
40
|
+
"documentation.verbosity",
|
|
41
|
+
"tone.technical_depth",
|
|
42
|
+
"guidance.experience_level",
|
|
43
|
+
"workflow.analytics_driven"
|
|
44
|
+
],
|
|
45
|
+
"benefits": [
|
|
46
|
+
"Consistent documentation standards",
|
|
47
|
+
"Shared research methodologies",
|
|
48
|
+
"Unified analysis approaches",
|
|
49
|
+
"Collaborative knowledge building"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"enterprise": {
|
|
53
|
+
"name": "Enterprise Team",
|
|
54
|
+
"description": "Standardized settings for enterprise environments",
|
|
55
|
+
"sharedPreferences": [
|
|
56
|
+
"tone.style",
|
|
57
|
+
"documentation.verbosity",
|
|
58
|
+
"resourceDelegation",
|
|
59
|
+
"customizations",
|
|
60
|
+
"languages.auto_setup_linting"
|
|
61
|
+
],
|
|
62
|
+
"benefits": [
|
|
63
|
+
"Enterprise compliance",
|
|
64
|
+
"Standardized workflows",
|
|
65
|
+
"Centralized policy management",
|
|
66
|
+
"Consistent user experience"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"flexible": {
|
|
70
|
+
"name": "Flexible Team",
|
|
71
|
+
"description": "Minimal shared preferences, maximum individual flexibility",
|
|
72
|
+
"sharedPreferences": [
|
|
73
|
+
"tone.style",
|
|
74
|
+
"resourceDelegation.mode"
|
|
75
|
+
],
|
|
76
|
+
"benefits": [
|
|
77
|
+
"Individual customization freedom",
|
|
78
|
+
"Minimal sync conflicts",
|
|
79
|
+
"Personal workflow optimization",
|
|
80
|
+
"Loose team coordination"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"conflictResolutionStrategies": {
|
|
85
|
+
"vote": {
|
|
86
|
+
"name": "Team Voting",
|
|
87
|
+
"description": "Team members vote to resolve conflicts",
|
|
88
|
+
"bestFor": ["Democratic teams", "Equally experienced members"]
|
|
89
|
+
},
|
|
90
|
+
"merge": {
|
|
91
|
+
"name": "Smart Merging",
|
|
92
|
+
"description": "Automatically merge compatible preferences",
|
|
93
|
+
"bestFor": ["Compatible preferences", "Array/object values"]
|
|
94
|
+
},
|
|
95
|
+
"admin-override": {
|
|
96
|
+
"name": "Admin Override",
|
|
97
|
+
"description": "Team admin's preferences take precedence",
|
|
98
|
+
"bestFor": ["Hierarchical teams", "Enterprise environments"]
|
|
99
|
+
},
|
|
100
|
+
"individual-choice": {
|
|
101
|
+
"name": "Individual Choice",
|
|
102
|
+
"description": "Preserve individual preferences",
|
|
103
|
+
"bestFor": ["Flexible teams", "Personal customization priority"]
|
|
104
|
+
},
|
|
105
|
+
"prompt": {
|
|
106
|
+
"name": "Interactive Resolution",
|
|
107
|
+
"description": "Prompt user to choose resolution method",
|
|
108
|
+
"bestFor": ["Ad-hoc collaboration", "Context-dependent decisions"]
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"examples": {
|
|
113
|
+
"workflows": [
|
|
114
|
+
{
|
|
115
|
+
"name": "New Team Setup",
|
|
116
|
+
"steps": [
|
|
117
|
+
"Team lead creates team with claude-flow-novice team create 'Dev Team'",
|
|
118
|
+
"Team lead configures collaboration mode and shared preferences",
|
|
119
|
+
"Members join using team ID",
|
|
120
|
+
"Initial preference sync occurs automatically",
|
|
121
|
+
"Team begins collaborative development with synchronized settings"
|
|
122
|
+
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "Adding New Shared Preference",
|
|
126
|
+
"steps": [
|
|
127
|
+
"Team member proposes new shared preference",
|
|
128
|
+
"Admin adds preference to shared list",
|
|
129
|
+
"Next sync propagates new preference to all members",
|
|
130
|
+
"Conflicts resolved using team's resolution strategy"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "Resolving Conflicts",
|
|
135
|
+
"steps": [
|
|
136
|
+
"Member's local changes conflict with team preferences",
|
|
137
|
+
"Sync process detects conflicts",
|
|
138
|
+
"Resolution strategy applied (vote/merge/admin/individual)",
|
|
139
|
+
"Resolved preferences saved and propagated",
|
|
140
|
+
"Team continues with synchronized settings"
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"useCases": [
|
|
145
|
+
{
|
|
146
|
+
"scenario": "Development Team with 5 Members",
|
|
147
|
+
"recommendation": "developer mode",
|
|
148
|
+
"sharedPreferences": [
|
|
149
|
+
"code formatting rules",
|
|
150
|
+
"linting standards",
|
|
151
|
+
"build processes",
|
|
152
|
+
"testing approaches"
|
|
153
|
+
],
|
|
154
|
+
"benefits": "Consistent code quality and development practices"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"scenario": "Research Group with Documentation Focus",
|
|
158
|
+
"recommendation": "research mode",
|
|
159
|
+
"sharedPreferences": [
|
|
160
|
+
"documentation verbosity",
|
|
161
|
+
"technical depth",
|
|
162
|
+
"analysis standards"
|
|
163
|
+
],
|
|
164
|
+
"benefits": "Unified research methodology and documentation standards"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"scenario": "Enterprise Team with Compliance Requirements",
|
|
168
|
+
"recommendation": "enterprise mode",
|
|
169
|
+
"sharedPreferences": [
|
|
170
|
+
"all major settings",
|
|
171
|
+
"security policies",
|
|
172
|
+
"compliance standards"
|
|
173
|
+
],
|
|
174
|
+
"benefits": "Centralized control and regulatory compliance"
|
|
175
|
+
}
|
|
176
|
+
]
|
|
177
|
+
},
|
|
178
|
+
"tips": {
|
|
179
|
+
"bestPractices": [
|
|
180
|
+
"Start with minimal shared preferences and add gradually",
|
|
181
|
+
"Choose collaboration mode based on team structure and needs",
|
|
182
|
+
"Regular sync prevents large conflict accumulation",
|
|
183
|
+
"Use descriptive team names and member names for clarity",
|
|
184
|
+
"Backup individual preferences before major sync operations",
|
|
185
|
+
"Review conflict resolutions periodically to ensure effectiveness"
|
|
186
|
+
],
|
|
187
|
+
"troubleshooting": [
|
|
188
|
+
"Sync lock timeout: Wait 30 seconds and retry",
|
|
189
|
+
"Conflict resolution deadlock: Use admin override temporarily",
|
|
190
|
+
"Missing team configuration: Check team ID accuracy",
|
|
191
|
+
"Permission errors: Verify team membership and role",
|
|
192
|
+
"Preference corruption: Restore from backup"
|
|
193
|
+
]
|
|
194
|
+
}
|
|
195
|
+
}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"created": "2025-09-24",
|
|
4
|
+
"_description": "Claude Flow Novice User Preferences - Controls behavior, communication style, and automation settings",
|
|
5
|
+
|
|
6
|
+
"preferences": {
|
|
7
|
+
"documentation": {
|
|
8
|
+
"_description": "Controls how much documentation is generated and what types are allowed",
|
|
9
|
+
"_used_in": [
|
|
10
|
+
"src/preferences/preference-manager.js:283,419",
|
|
11
|
+
"src/preferences/preference-wizard.js:174,485",
|
|
12
|
+
"src/hooks/enhanced/personalization-hooks.js"
|
|
13
|
+
],
|
|
14
|
+
"verbosity": "moderate",
|
|
15
|
+
"_verbosity_options": ["minimal", "moderate", "comprehensive"],
|
|
16
|
+
"_verbosity_description": "Amount of documentation detail - minimal=essential only, moderate=balanced, comprehensive=detailed",
|
|
17
|
+
|
|
18
|
+
"auto_generate_md": false,
|
|
19
|
+
"_auto_generate_md_description": "Whether agents automatically create .md files without being asked",
|
|
20
|
+
"_auto_generate_md_used_in": ["src/filters/content-filters.js (controls .md generation limits)"],
|
|
21
|
+
|
|
22
|
+
"allowed_md_types": ["README", "API_DOCS", "CHANGELOG"],
|
|
23
|
+
"_allowed_md_types_description": "Types of markdown files agents can create. Prevents unwanted documentation spam",
|
|
24
|
+
"_allowed_md_types_used_in": ["src/filters/content-filters.js (file type validation)"],
|
|
25
|
+
|
|
26
|
+
"max_md_files_per_session": 3,
|
|
27
|
+
"_max_md_files_per_session_description": "Maximum .md files agents can create in one session to prevent documentation overload",
|
|
28
|
+
"_max_md_files_per_session_used_in": ["src/filters/content-filters.js (session limits)"]
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"tone": {
|
|
32
|
+
"_description": "Controls communication style and how agents respond to you",
|
|
33
|
+
"style": "professional",
|
|
34
|
+
"_style_options": ["professional", "casual", "minimal-feedback"],
|
|
35
|
+
"_style_description": "Communication formality - professional=structured responses, casual=conversational, minimal-feedback=brief answers",
|
|
36
|
+
|
|
37
|
+
"celebration_level": "minimal",
|
|
38
|
+
"_celebration_level_options": ["none", "minimal", "moderate", "enthusiastic"],
|
|
39
|
+
"_celebration_level_description": "How much agents celebrate successes - none=no celebrations, minimal=brief acknowledgment, enthusiastic=lots of emojis",
|
|
40
|
+
|
|
41
|
+
"feedback_verbosity": "concise",
|
|
42
|
+
"_feedback_verbosity_options": ["terse", "concise", "detailed", "verbose"],
|
|
43
|
+
"_feedback_verbosity_description": "Length of agent responses - terse=one-liners, concise=brief explanations, detailed=full context",
|
|
44
|
+
|
|
45
|
+
"technical_depth": "balanced",
|
|
46
|
+
"_technical_depth_options": ["surface", "balanced", "deep", "expert"],
|
|
47
|
+
"_technical_depth_description": "Technical detail level - surface=simple explanations, balanced=moderate detail, expert=full technical depth"
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
"guidance": {
|
|
51
|
+
"_description": "Controls how much help and guidance agents provide based on your experience level",
|
|
52
|
+
"_used_in": [
|
|
53
|
+
"src/guidance/experience-manager.js:183,184",
|
|
54
|
+
"src/guidance/adaptive-guide.js:155,176,650"
|
|
55
|
+
],
|
|
56
|
+
"experience_level": "adaptive",
|
|
57
|
+
"_experience_level_options": ["novice", "intermediate", "expert", "adaptive"],
|
|
58
|
+
"_experience_level_description": "Your skill level - novice=lots of guidance, expert=minimal help, adaptive=learns your patterns",
|
|
59
|
+
|
|
60
|
+
"show_advanced_options": false,
|
|
61
|
+
"_show_advanced_options_description": "Whether to show complex/dangerous options to prevent accidents",
|
|
62
|
+
"_show_advanced_options_used_in": ["src/cli/commands/ (controls advanced option visibility)"],
|
|
63
|
+
|
|
64
|
+
"progressive_disclosure": true,
|
|
65
|
+
"_progressive_disclosure_description": "Show simple options first, reveal advanced features as you grow",
|
|
66
|
+
"_progressive_disclosure_used_in": ["src/guidance/adaptive-guide.js (feature reveal logic)"],
|
|
67
|
+
|
|
68
|
+
"context_aware_help": true,
|
|
69
|
+
"_context_aware_help_description": "Provide help based on what you're currently working on",
|
|
70
|
+
"_context_aware_help_used_in": ["src/guidance/context-helper.js (contextual assistance)"]
|
|
71
|
+
},
|
|
72
|
+
|
|
73
|
+
"workflow": {
|
|
74
|
+
"_description": "Controls automatic optimization and learning from your work patterns",
|
|
75
|
+
"auto_optimize": true,
|
|
76
|
+
"_auto_optimize_description": "Let the system automatically improve workflows based on your usage patterns",
|
|
77
|
+
|
|
78
|
+
"suggestion_frequency": "after_major_tasks",
|
|
79
|
+
"_suggestion_frequency_options": ["never", "after_major_tasks", "frequently", "always"],
|
|
80
|
+
"_suggestion_frequency_description": "When to offer optimization suggestions - never=no suggestions, always=constant suggestions",
|
|
81
|
+
|
|
82
|
+
"analytics_driven": true,
|
|
83
|
+
"_analytics_driven_description": "Use analytics to make better decisions about agent coordination and task routing",
|
|
84
|
+
|
|
85
|
+
"pattern_learning": true,
|
|
86
|
+
"_pattern_learning_description": "Learn from your successful patterns to improve future task handling"
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
"languages": {
|
|
90
|
+
"_description": "Controls automatic language detection and setup for different programming languages",
|
|
91
|
+
"auto_detect": true,
|
|
92
|
+
"_auto_detect_description": "Automatically detect what programming language/framework you're using",
|
|
93
|
+
|
|
94
|
+
"preferred_languages": ["javascript", "typescript", "python"],
|
|
95
|
+
"_preferred_languages_description": "Languages to prioritize when multiple options are available",
|
|
96
|
+
|
|
97
|
+
"auto_setup_linting": true,
|
|
98
|
+
"_auto_setup_linting_description": "Automatically configure linting and formatting tools for detected languages",
|
|
99
|
+
|
|
100
|
+
"framework_detection": true,
|
|
101
|
+
"_framework_detection_description": "Detect specific frameworks (React, Django, etc.) for better assistance"
|
|
102
|
+
},
|
|
103
|
+
|
|
104
|
+
"team": {
|
|
105
|
+
"_description": "Controls team collaboration and preference sharing across multiple developers",
|
|
106
|
+
"share_preferences": false,
|
|
107
|
+
"_share_preferences_description": "Share your preferences with team members for consistency",
|
|
108
|
+
|
|
109
|
+
"sync_claude_md": true,
|
|
110
|
+
"_sync_claude_md_description": "Keep CLAUDE.md configuration files synchronized across team",
|
|
111
|
+
|
|
112
|
+
"collaborative_mode": false,
|
|
113
|
+
"_collaborative_mode_description": "Enable real-time collaboration features with other team members"
|
|
114
|
+
},
|
|
115
|
+
|
|
116
|
+
"resourceDelegation": {
|
|
117
|
+
"_description": "Controls how heavy/slow commands are distributed across agents to improve performance",
|
|
118
|
+
"_used_in": [
|
|
119
|
+
"src/resource-management/resource-coordinator.js:39-50",
|
|
120
|
+
"src/resource-management/cli.js",
|
|
121
|
+
"src/collaboration/team-sync.js"
|
|
122
|
+
],
|
|
123
|
+
"mode": "adaptive",
|
|
124
|
+
"_mode_options": ["adaptive", "distributed", "single-delegate"],
|
|
125
|
+
"_mode_description": "Strategy for handling heavy commands - adaptive=smart choice, distributed=spread across agents, single-delegate=one agent handles all",
|
|
126
|
+
|
|
127
|
+
"heavyCommandThreshold": 5000,
|
|
128
|
+
"_heavyCommandThreshold_description": "Commands taking longer than this (milliseconds) are considered 'heavy' and get special handling",
|
|
129
|
+
"_heavyCommandThreshold_used_in": ["src/resource-management/resource-coordinator.js:42 (command classification)"],
|
|
130
|
+
|
|
131
|
+
"maxConcurrentHeavyCommands": 2,
|
|
132
|
+
"_maxConcurrentHeavyCommands_description": "Maximum heavy commands running simultaneously to prevent system overload",
|
|
133
|
+
"_maxConcurrentHeavyCommands_used_in": ["src/resource-management/resource-coordinator.js:43 (concurrency limiting)"],
|
|
134
|
+
|
|
135
|
+
"preferredDelegate": "auto",
|
|
136
|
+
"_preferredDelegate_options": ["auto", "performance-optimized", "memory-optimized", "specific-agent-name"],
|
|
137
|
+
"_preferredDelegate_description": "Which agent to prefer for heavy tasks - auto=best available, performance-optimized=fastest agent",
|
|
138
|
+
"_preferredDelegate_used_in": ["src/resource-management/resource-coordinator.js:44 (agent selection)"],
|
|
139
|
+
|
|
140
|
+
"resourceLimits": {
|
|
141
|
+
"_description": "System resource usage limits to prevent overloading your machine",
|
|
142
|
+
"cpu": 80,
|
|
143
|
+
"_cpu_description": "Maximum CPU usage percentage before throttling",
|
|
144
|
+
"memory": 75,
|
|
145
|
+
"_memory_description": "Maximum memory usage percentage before warnings",
|
|
146
|
+
"network": 90,
|
|
147
|
+
"_network_description": "Maximum network bandwidth usage percentage"
|
|
148
|
+
},
|
|
149
|
+
|
|
150
|
+
"commands": {
|
|
151
|
+
"_description": "Specific command patterns and how they should be handled",
|
|
152
|
+
"heavyCommands": [
|
|
153
|
+
"npm test",
|
|
154
|
+
"npm run test",
|
|
155
|
+
"jest",
|
|
156
|
+
"vitest",
|
|
157
|
+
"npm run build",
|
|
158
|
+
"tsc",
|
|
159
|
+
"webpack",
|
|
160
|
+
"vite build",
|
|
161
|
+
"cargo build",
|
|
162
|
+
"cargo test",
|
|
163
|
+
"go build",
|
|
164
|
+
"go test",
|
|
165
|
+
"python -m pytest",
|
|
166
|
+
"mvn test",
|
|
167
|
+
"gradle build",
|
|
168
|
+
"docker build"
|
|
169
|
+
],
|
|
170
|
+
"_heavyCommands_description": "Commands that typically take a long time and should use resource delegation",
|
|
171
|
+
|
|
172
|
+
"delegationRules": {
|
|
173
|
+
"_description": "Specific rules for different types of commands",
|
|
174
|
+
"test": "single-delegate",
|
|
175
|
+
"_test_description": "Testing commands use single-delegate to avoid conflicts",
|
|
176
|
+
"build": "adaptive",
|
|
177
|
+
"_build_description": "Build commands use adaptive strategy for best performance",
|
|
178
|
+
"compile": "single-delegate",
|
|
179
|
+
"_compile_description": "Compilation uses single agent to avoid file conflicts",
|
|
180
|
+
"lint": "distributed",
|
|
181
|
+
"_lint_description": "Linting can be distributed since it's read-only"
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
|
|
187
|
+
"customizations": {
|
|
188
|
+
"_description": "Fine-tune agent behavior and system organization to match your preferences",
|
|
189
|
+
|
|
190
|
+
"message_filters": {
|
|
191
|
+
"_description": "Control what types of messages and language agents use",
|
|
192
|
+
"_used_in": [
|
|
193
|
+
"src/filters/tone-processors.js",
|
|
194
|
+
"src/hooks/enhanced/personalization-hooks.js"
|
|
195
|
+
],
|
|
196
|
+
"remove_congratulatory": true,
|
|
197
|
+
"_remove_congratulatory_description": "Remove celebratory language like 'Great job!' to keep responses focused",
|
|
198
|
+
"_remove_congratulatory_used_in": ["src/filters/tone-processors.js (message filtering)"],
|
|
199
|
+
|
|
200
|
+
"simplify_technical_jargon": false,
|
|
201
|
+
"_simplify_technical_jargon_description": "Replace complex technical terms with simpler explanations",
|
|
202
|
+
"_simplify_technical_jargon_used_in": ["src/filters/tone-processors.js (jargon replacement)"],
|
|
203
|
+
|
|
204
|
+
"focus_on_actionable": true,
|
|
205
|
+
"_focus_on_actionable_description": "Emphasize what you need to do next rather than explanations of what was done",
|
|
206
|
+
"_focus_on_actionable_used_in": ["src/filters/content-filters.js (response structuring)"]
|
|
207
|
+
},
|
|
208
|
+
|
|
209
|
+
"file_organization": {
|
|
210
|
+
"_description": "Control how agents organize and create files in your project",
|
|
211
|
+
"_used_in": [
|
|
212
|
+
"src/filters/content-filters.js",
|
|
213
|
+
"config/hooks/pre-edit-security.cjs"
|
|
214
|
+
],
|
|
215
|
+
"strict_directory_rules": true,
|
|
216
|
+
"_strict_directory_rules_description": "Enforce proper file organization (no files in root directory, proper folder structure)",
|
|
217
|
+
"_strict_directory_rules_used_in": ["config/hooks/pre-edit-security.cjs (directory enforcement)"],
|
|
218
|
+
|
|
219
|
+
"auto_categorize": true,
|
|
220
|
+
"_auto_categorize_description": "Automatically put files in appropriate directories (src/, tests/, docs/, etc.)",
|
|
221
|
+
"_auto_categorize_used_in": ["src/filters/content-filters.js (automatic file placement)"],
|
|
222
|
+
|
|
223
|
+
"prevent_root_clutter": true,
|
|
224
|
+
"_prevent_root_clutter_description": "Block agents from creating files in the root directory to keep it clean",
|
|
225
|
+
"_prevent_root_clutter_used_in": ["config/hooks/pre-edit-security.cjs (root directory protection)"]
|
|
226
|
+
},
|
|
227
|
+
|
|
228
|
+
"agent_behavior": {
|
|
229
|
+
"_description": "Control overall agent personality and response style",
|
|
230
|
+
"_used_in": [
|
|
231
|
+
"src/hooks/enhanced/personalization-hooks.js",
|
|
232
|
+
"src/cli/personalization-cli.js"
|
|
233
|
+
],
|
|
234
|
+
"concise_reporting": true,
|
|
235
|
+
"_concise_reporting_description": "Keep agent reports brief and to-the-point",
|
|
236
|
+
"_concise_reporting_used_in": ["src/hooks/enhanced/personalization-hooks.js (response formatting)"],
|
|
237
|
+
|
|
238
|
+
"focus_on_results": true,
|
|
239
|
+
"_focus_on_results_description": "Emphasize what was accomplished rather than how it was done",
|
|
240
|
+
"_focus_on_results_used_in": ["src/filters/content-filters.js (result emphasis)"],
|
|
241
|
+
|
|
242
|
+
"minimize_process_descriptions": false,
|
|
243
|
+
"_minimize_process_descriptions_description": "Reduce explanations of internal processes and focus on user-relevant information",
|
|
244
|
+
"_minimize_process_descriptions_used_in": ["src/filters/tone-processors.js (process filtering)"]
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|