@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/dist/index.d.ts
CHANGED
|
@@ -166,7 +166,7 @@ declare function getConfigPath(startDir?: string): string | null;
|
|
|
166
166
|
* TypeScript types corresponding to the JSON schema at schemas/agent.schema.json
|
|
167
167
|
*/
|
|
168
168
|
type AgentType = 'ic-engineer' | 'manager' | 'specialist' | 'coordinator';
|
|
169
|
-
type WorkflowType = 'ticket-implementation' | 'bug-investigation' | 'code-review' | 'planning-estimation';
|
|
169
|
+
type WorkflowType = 'ticket-implementation' | 'bug-investigation' | 'code-review' | 'planning-estimation' | 'product-planning';
|
|
170
170
|
interface AgentExpertise {
|
|
171
171
|
primary?: string[];
|
|
172
172
|
tech_stack?: string;
|