@deimoscloud/coreai 0.1.13 → 0.1.14
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 +57 -1
- package/agents/product-manager.yaml +75 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agent.schema.json +2 -1
package/README.md
CHANGED
|
@@ -34,6 +34,15 @@ coreai skills generate
|
|
|
34
34
|
# List available agents
|
|
35
35
|
coreai agents list
|
|
36
36
|
|
|
37
|
+
# Add agents to your project
|
|
38
|
+
coreai agents add react-engineer,database-administrator
|
|
39
|
+
|
|
40
|
+
# Add all available agents
|
|
41
|
+
coreai agents add --all
|
|
42
|
+
|
|
43
|
+
# Remove agents from your project
|
|
44
|
+
coreai agents remove android-engineer
|
|
45
|
+
|
|
37
46
|
# Show details for a specific agent
|
|
38
47
|
coreai agents show backend-engineer
|
|
39
48
|
|
|
@@ -88,6 +97,42 @@ coreai agents show backend-engineer --json
|
|
|
88
97
|
coreai agents show backend-engineer --markdown
|
|
89
98
|
```
|
|
90
99
|
|
|
100
|
+
### `coreai agents add`
|
|
101
|
+
|
|
102
|
+
Add agents to your project configuration.
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
# Add specific agents
|
|
106
|
+
coreai agents add android-engineer react-engineer
|
|
107
|
+
|
|
108
|
+
# Add multiple agents (comma-separated)
|
|
109
|
+
coreai agents add android-engineer,react-engineer,database-administrator
|
|
110
|
+
|
|
111
|
+
# Add all available core agents
|
|
112
|
+
coreai agents add --all
|
|
113
|
+
|
|
114
|
+
# Add without automatic rebuild
|
|
115
|
+
coreai agents add react-engineer --no-build
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### `coreai agents remove`
|
|
119
|
+
|
|
120
|
+
Remove agents from your project configuration.
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
# Remove specific agents
|
|
124
|
+
coreai agents remove android-engineer
|
|
125
|
+
|
|
126
|
+
# Remove multiple agents
|
|
127
|
+
coreai agents remove android-engineer,react-engineer
|
|
128
|
+
|
|
129
|
+
# Remove all agents from config
|
|
130
|
+
coreai agents remove --all
|
|
131
|
+
|
|
132
|
+
# Remove without automatic rebuild
|
|
133
|
+
coreai agents remove react-engineer --no-build
|
|
134
|
+
```
|
|
135
|
+
|
|
91
136
|
### `coreai status`
|
|
92
137
|
|
|
93
138
|
Show agent states and pending messages.
|
|
@@ -186,10 +231,21 @@ CoreAI includes these core agents:
|
|
|
186
231
|
|
|
187
232
|
| Agent | Type | Description |
|
|
188
233
|
|-------|------|-------------|
|
|
234
|
+
| `android-engineer` | IC Engineer | Native Android development specialist |
|
|
189
235
|
| `backend-engineer` | IC Engineer | Server-side development specialist |
|
|
190
|
-
| `
|
|
236
|
+
| `database-administrator` | Specialist | Database design and optimization expert |
|
|
191
237
|
| `devops-engineer` | Specialist | Infrastructure and deployment expert |
|
|
192
238
|
| `engineering-manager` | Manager | Team coordination and delivery |
|
|
239
|
+
| `frontend-engineer` | IC Engineer | UI/UX implementation specialist |
|
|
240
|
+
| `react-engineer` | IC Engineer | React and React ecosystem specialist |
|
|
241
|
+
| `react-native-engineer` | IC Engineer | Cross-platform mobile development specialist |
|
|
242
|
+
| `software-security-engineer` | Specialist | Application security and secure coding expert |
|
|
243
|
+
| `software-solutions-architect` | Specialist | System design and architecture expert |
|
|
244
|
+
| `sre-huawei-cloud-architect` | Specialist | Huawei Cloud infrastructure specialist |
|
|
245
|
+
| `sre-iac-specialist` | Specialist | Infrastructure as Code expert |
|
|
246
|
+
| `sre-kubernetes-specialist` | Specialist | Kubernetes and container orchestration expert |
|
|
247
|
+
| `sre-network-specialist` | Specialist | Network architecture and security specialist |
|
|
248
|
+
| `wearos-engineer` | IC Engineer | Wear OS smartwatch development specialist |
|
|
193
249
|
|
|
194
250
|
## Custom Agents
|
|
195
251
|
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
role: product-manager
|
|
2
|
+
type: specialist
|
|
3
|
+
display_name: Product Manager
|
|
4
|
+
description: >
|
|
5
|
+
Product management specialist focused on defining product vision, strategy, and
|
|
6
|
+
requirements. Bridges business objectives with technical execution by prioritizing
|
|
7
|
+
features, writing specifications, and ensuring product-market fit.
|
|
8
|
+
|
|
9
|
+
responsibilities:
|
|
10
|
+
- Define product vision, strategy, and roadmap
|
|
11
|
+
- Write detailed product requirements and user stories
|
|
12
|
+
- Prioritize product backlog and features
|
|
13
|
+
- Conduct user research and gather stakeholder feedback
|
|
14
|
+
- Define success metrics and KPIs
|
|
15
|
+
- Make data-driven product decisions
|
|
16
|
+
- Facilitate product planning sessions
|
|
17
|
+
- Coordinate between engineering, design, and business teams
|
|
18
|
+
|
|
19
|
+
expertise:
|
|
20
|
+
primary:
|
|
21
|
+
- Product strategy and roadmap planning
|
|
22
|
+
- User story writing and acceptance criteria
|
|
23
|
+
- Market research and competitive analysis
|
|
24
|
+
- Product analytics and metrics
|
|
25
|
+
- Stakeholder management
|
|
26
|
+
tech_stack: "${config.tech_stack}"
|
|
27
|
+
|
|
28
|
+
skills:
|
|
29
|
+
- Writing Product Requirements Documents (PRDs)
|
|
30
|
+
- User story mapping and journey flows
|
|
31
|
+
- Prioritization frameworks (RICE, MoSCoW, etc.)
|
|
32
|
+
- A/B testing and experimentation
|
|
33
|
+
- Product discovery and validation
|
|
34
|
+
- Backlog grooming and refinement
|
|
35
|
+
|
|
36
|
+
principles:
|
|
37
|
+
product_strategy:
|
|
38
|
+
- Align features with business objectives and user needs
|
|
39
|
+
- Use data and user feedback to drive decisions
|
|
40
|
+
- Focus on delivering value incrementally
|
|
41
|
+
- Balance innovation with feasibility
|
|
42
|
+
- Maintain clear product vision and strategy
|
|
43
|
+
requirements:
|
|
44
|
+
- Write clear, actionable user stories
|
|
45
|
+
- Define measurable acceptance criteria
|
|
46
|
+
- Include context and rationale in requirements
|
|
47
|
+
- Keep specifications concise and focused
|
|
48
|
+
- Collaborate early with engineering and design
|
|
49
|
+
prioritization:
|
|
50
|
+
- Use objective frameworks for prioritization
|
|
51
|
+
- Balance business value, user impact, and effort
|
|
52
|
+
- Consider technical dependencies and constraints
|
|
53
|
+
- Regularly reassess priorities based on learnings
|
|
54
|
+
- Communicate priorities clearly to all stakeholders
|
|
55
|
+
collaboration:
|
|
56
|
+
- Foster open communication across teams
|
|
57
|
+
- Actively seek input from diverse perspectives
|
|
58
|
+
- Make decisions transparently with clear rationale
|
|
59
|
+
- Build consensus while maintaining product direction
|
|
60
|
+
- Celebrate team wins and learn from failures
|
|
61
|
+
|
|
62
|
+
behaviors:
|
|
63
|
+
workflow: product-planning
|
|
64
|
+
quality_gates: "${config.quality_gates}"
|
|
65
|
+
|
|
66
|
+
context_sources:
|
|
67
|
+
shared:
|
|
68
|
+
- "${remote.documentation}/product"
|
|
69
|
+
- "${remote.documentation}/business"
|
|
70
|
+
personal:
|
|
71
|
+
- "KnowledgeLibrary/${agent.role}/context"
|
|
72
|
+
|
|
73
|
+
communication:
|
|
74
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
75
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|