@wipal/agent-team 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/config/roles.yaml +130 -0
  2. package/package.json +3 -4
@@ -0,0 +1,130 @@
1
+ # Role Definitions for Agent Team
2
+ # Each role defines which skills are included
3
+
4
+ roles:
5
+ # Frontend Developer
6
+ dev-fe:
7
+ name: Frontend Developer
8
+ description: React/Vue/Angular development, UI/UX implementation
9
+ skills:
10
+ inherit: []
11
+ include:
12
+ - category: frontend
13
+ - category: core
14
+ exclude: []
15
+
16
+ # Backend Developer
17
+ dev-be:
18
+ name: Backend Developer
19
+ description: API design, database, server-side logic
20
+ skills:
21
+ inherit: []
22
+ include:
23
+ - category: backend
24
+ - category: core
25
+ exclude: []
26
+
27
+ # Solution Architect
28
+ sa:
29
+ name: Solution Architect
30
+ description: System design, architecture decisions, tech selection
31
+ skills:
32
+ inherit: []
33
+ include:
34
+ - category: architecture
35
+ - category: core
36
+ optional:
37
+ - category: frontend
38
+ - category: backend
39
+ - category: devops
40
+ exclude: []
41
+
42
+ # Tech Lead
43
+ tech-lead:
44
+ name: Tech Lead
45
+ description: Technical leadership, code review, mentoring
46
+ skills:
47
+ inherit:
48
+ - dev-fe
49
+ - dev-be
50
+ include:
51
+ - category: leadership
52
+ exclude: []
53
+
54
+ # DevOps Engineer
55
+ devops:
56
+ name: DevOps Engineer
57
+ description: CI/CD, infrastructure, deployment, monitoring
58
+ skills:
59
+ inherit: []
60
+ include:
61
+ - category: devops
62
+ - category: core
63
+ exclude: []
64
+
65
+ # Product Manager
66
+ pm:
67
+ name: Product Manager
68
+ description: Requirements, user stories, sprint planning
69
+ skills:
70
+ inherit: []
71
+ include:
72
+ - category: product
73
+ - category: core
74
+ exclude: []
75
+
76
+ # QA Engineer
77
+ qa:
78
+ name: QA Engineer
79
+ description: Testing, quality assurance, automation
80
+ skills:
81
+ inherit: []
82
+ include:
83
+ - category: quality
84
+ - category: core
85
+ exclude: []
86
+
87
+ # Category to skill folder mapping
88
+ # Used when scanning skills
89
+ categories:
90
+ core:
91
+ description: Universal skills for all agents
92
+ folder: core
93
+
94
+ frontend:
95
+ description: Frontend development skills
96
+ folder: domain/frontend
97
+
98
+ backend:
99
+ description: Backend development skills
100
+ folder: domain/backend
101
+
102
+ architecture:
103
+ description: Architecture and system design skills
104
+ folder: domain/architecture
105
+
106
+ devops:
107
+ description: DevOps and infrastructure skills
108
+ folder: domain/devops
109
+
110
+ product:
111
+ description: Product management skills
112
+ folder: domain/product
113
+
114
+ quality:
115
+ description: QA and testing skills
116
+ folder: domain/quality
117
+
118
+ leadership:
119
+ description: Tech lead and management skills
120
+ folder: leadership
121
+
122
+ community:
123
+ description: Community contributed skills
124
+ folder: community
125
+
126
+ # Core skills - always included
127
+ core_skills:
128
+ - code-review
129
+ - git-automation
130
+ - retrospect-work
package/package.json CHANGED
@@ -1,11 +1,9 @@
1
1
  {
2
2
  "name": "@wipal/agent-team",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool to add AI agent teams to existing projects with minimal setup",
5
5
  "type": "module",
6
- "bin": {
7
- "agent-team": "./bin/agent-team.js"
8
- },
6
+ "bin": "./bin/agent-team.js",
9
7
  "main": "./src/index.js",
10
8
  "exports": {
11
9
  ".": "./src/index.js"
@@ -14,6 +12,7 @@
14
12
  "bin",
15
13
  "src",
16
14
  "templates",
15
+ "config",
17
16
  ".claude/skills",
18
17
  ".claude/rules"
19
18
  ],