@deimoscloud/coreai 0.1.12 → 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 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
- | `frontend-engineer` | IC Engineer | UI/UX implementation specialist |
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"
package/dist/cli/index.js CHANGED
@@ -4447,7 +4447,7 @@ ${agent.display_name}`);
4447
4447
  process.exit(1);
4448
4448
  }
4449
4449
  });
4450
- agents.command("add <agents...>").description("Add agents to your project configuration").option("--all", "add all available core agents").option("--no-build", "skip rebuilding agents after adding").action(async (agentNames, options) => {
4450
+ agents.command("add [agents...]").description("Add agents to your project configuration").option("--all", "add all available core agents").option("--no-build", "skip rebuilding agents after adding").action(async (agentNames = [], options) => {
4451
4451
  try {
4452
4452
  const parsedAgents = agentNames.flatMap((a) => a.split(",").map((s) => s.trim()));
4453
4453
  const result = agentsAdd(parsedAgents, {
@@ -4475,7 +4475,7 @@ agents.command("add <agents...>").description("Add agents to your project config
4475
4475
  process.exit(1);
4476
4476
  }
4477
4477
  });
4478
- agents.command("remove <agents...>").description("Remove agents from your project configuration").option("--all", "remove all agents from config").option("--no-build", "skip rebuilding agents after removing").action(async (agentNames, options) => {
4478
+ agents.command("remove [agents...]").description("Remove agents from your project configuration").option("--all", "remove all agents from config").option("--no-build", "skip rebuilding agents after removing").action(async (agentNames = [], options) => {
4479
4479
  try {
4480
4480
  const parsedAgents = agentNames.flatMap((a) => a.split(",").map((s) => s.trim()));
4481
4481
  const result = agentsRemove(parsedAgents, {