claude-flow-novice 1.3.5 → 1.3.6
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/agents/analyst.md +642 -0
- package/.claude/agents/architect.md +890 -0
- package/.claude/agents/architecture/system-architect.md +611 -0
- package/.claude/agents/backend-dev.json +36 -3
- package/.claude/agents/code-analyzer.json +33 -3
- package/.claude/agents/coder.json +36 -3
- package/.claude/agents/coder.md +396 -0
- package/.claude/agents/coordinator.md +831 -0
- package/.claude/agents/devops/devops-engineer.md +906 -0
- package/.claude/agents/optimization/perf-analyzer.md +725 -0
- package/.claude/agents/planner.json +35 -3
- package/.claude/agents/researcher.json +35 -3
- package/.claude/agents/researcher.md +172 -0
- package/.claude/agents/reviewer.json +33 -3
- package/.claude/agents/security/security-specialist.md +978 -0
- package/.claude/agents/swarm/adaptive-coordinator-enhanced.md +746 -0
- package/.claude/agents/system-architect.json +34 -3
- package/.claude/agents/tester.json +34 -3
- package/.claude/agents/tester.md +653 -0
- package/CLAUDE.md +16 -6
- package/examples/02-workflows/claude-workflow.json +5 -5
- package/package.json +1 -1
- package/scripts/post-install-claude-md.js +28 -0
- package/src/cli/simple-commands/init/index.js +13 -13
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "system-architect",
|
|
3
3
|
"type": "system-architect",
|
|
4
|
-
"description": "System
|
|
4
|
+
"description": "System architect for designing scalable, maintainable system architectures",
|
|
5
5
|
"capabilities": [
|
|
6
|
-
"system-
|
|
6
|
+
"system-design",
|
|
7
|
+
"architecture-evaluation",
|
|
8
|
+
"technical-documentation",
|
|
9
|
+
"component-design"
|
|
7
10
|
],
|
|
8
|
-
"
|
|
11
|
+
"tools": {
|
|
12
|
+
"required": [
|
|
13
|
+
"Read",
|
|
14
|
+
"Write",
|
|
15
|
+
"Edit",
|
|
16
|
+
"MultiEdit",
|
|
17
|
+
"Glob",
|
|
18
|
+
"Grep",
|
|
19
|
+
"TodoWrite"
|
|
20
|
+
],
|
|
21
|
+
"optional": [
|
|
22
|
+
"Bash",
|
|
23
|
+
"WebSearch",
|
|
24
|
+
"WebFetch",
|
|
25
|
+
"Task"
|
|
26
|
+
],
|
|
27
|
+
"coordination": [
|
|
28
|
+
"mcp__claude-flow-novice__memory_usage",
|
|
29
|
+
"mcp__claude-flow-novice__agent_metrics"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"responsibilities": [
|
|
33
|
+
"Design system architectures with clear component interactions",
|
|
34
|
+
"Document architectural decisions with rationale",
|
|
35
|
+
"Create system diagrams and component specifications",
|
|
36
|
+
"Evaluate technology choices and trade-offs",
|
|
37
|
+
"Define architectural patterns and principles"
|
|
38
|
+
],
|
|
39
|
+
"version": "2.0.0"
|
|
9
40
|
}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tester",
|
|
3
3
|
"type": "tester",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Quality assurance agent for testing, validation, and quality control",
|
|
5
5
|
"capabilities": [
|
|
6
|
-
"
|
|
6
|
+
"unit-testing",
|
|
7
|
+
"integration-testing",
|
|
8
|
+
"test-automation",
|
|
9
|
+
"quality-validation",
|
|
10
|
+
"bug-detection"
|
|
7
11
|
],
|
|
8
|
-
"
|
|
12
|
+
"tools": {
|
|
13
|
+
"required": [
|
|
14
|
+
"Read",
|
|
15
|
+
"Write",
|
|
16
|
+
"Edit",
|
|
17
|
+
"Bash",
|
|
18
|
+
"Glob",
|
|
19
|
+
"Grep",
|
|
20
|
+
"TodoWrite"
|
|
21
|
+
],
|
|
22
|
+
"optional": [
|
|
23
|
+
"MultiEdit",
|
|
24
|
+
"Task",
|
|
25
|
+
"NotebookEdit"
|
|
26
|
+
],
|
|
27
|
+
"coordination": [
|
|
28
|
+
"mcp__claude-flow-novice__task_status",
|
|
29
|
+
"mcp__claude-flow-novice__memory_usage"
|
|
30
|
+
]
|
|
31
|
+
},
|
|
32
|
+
"responsibilities": [
|
|
33
|
+
"Create comprehensive test suites and test cases",
|
|
34
|
+
"Execute automated and manual testing procedures",
|
|
35
|
+
"Validate functionality against requirements",
|
|
36
|
+
"Identify and document bugs and issues",
|
|
37
|
+
"Ensure quality standards are met before deployment"
|
|
38
|
+
],
|
|
39
|
+
"version": "2.0.0"
|
|
9
40
|
}
|