@deimoscloud/coreai 0.1.13 → 0.1.15
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/_templates/ic-engineer.md +99 -14
- package/agents/_templates/reviewer.md +95 -13
- package/agents/android-engineer.yaml +38 -4
- package/agents/backend-engineer.yaml +38 -4
- package/agents/database-administrator.yaml +38 -4
- package/agents/devops-engineer.yaml +38 -4
- package/agents/engineering-manager.yaml +38 -4
- package/agents/frontend-engineer.yaml +38 -4
- package/agents/product-manager.yaml +109 -0
- package/agents/react-engineer.yaml +38 -4
- package/agents/react-native-engineer.yaml +38 -4
- package/agents/software-security-engineer.yaml +38 -4
- package/agents/software-solutions-architect.yaml +38 -4
- package/agents/sre-huawei-cloud-architect.yaml +38 -4
- package/agents/sre-iac-specialist.yaml +38 -4
- package/agents/sre-kubernetes-specialist.yaml +38 -4
- package/agents/sre-network-specialist.yaml +38 -4
- package/agents/wearos-engineer.yaml +38 -4
- package/dist/cli/index.js +182 -31
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +42 -1
- package/dist/index.js +182 -31
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agent.schema.json +142 -4
|
@@ -60,13 +60,47 @@ behaviors:
|
|
|
60
60
|
workflow: ticket-implementation
|
|
61
61
|
quality_gates: "${config.quality_gates}"
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
knowledge_library:
|
|
64
64
|
shared:
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
context: "KnowledgeLibrary/context.txt"
|
|
66
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
67
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
68
|
+
remote:
|
|
69
|
+
- "${remote.documentation}"
|
|
67
70
|
personal:
|
|
68
|
-
|
|
71
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
72
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
73
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
74
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
75
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
76
|
+
control:
|
|
77
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
78
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
79
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
80
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
69
81
|
|
|
70
82
|
communication:
|
|
71
83
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
72
84
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
85
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
86
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
87
|
+
processed_dir: "inbox/processed/"
|
|
88
|
+
|
|
89
|
+
protocols:
|
|
90
|
+
startup:
|
|
91
|
+
first_session:
|
|
92
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
93
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
94
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
95
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
96
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
97
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
98
|
+
subsequent:
|
|
99
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
100
|
+
completion:
|
|
101
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
102
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
103
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
104
|
+
- "Store technical artifacts in tech/"
|
|
105
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
106
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -0,0 +1,109 @@
|
|
|
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
|
+
knowledge_library:
|
|
67
|
+
shared:
|
|
68
|
+
context: "KnowledgeLibrary/context.txt"
|
|
69
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
70
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
71
|
+
remote:
|
|
72
|
+
- "${remote.documentation}"
|
|
73
|
+
personal:
|
|
74
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
75
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
76
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
77
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
78
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
79
|
+
control:
|
|
80
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
81
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
82
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
83
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
84
|
+
|
|
85
|
+
communication:
|
|
86
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
87
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
88
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
89
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
90
|
+
processed_dir: "inbox/processed/"
|
|
91
|
+
|
|
92
|
+
protocols:
|
|
93
|
+
startup:
|
|
94
|
+
first_session:
|
|
95
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
96
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
97
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
98
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
99
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
100
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
101
|
+
subsequent:
|
|
102
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
103
|
+
completion:
|
|
104
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
105
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
106
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
107
|
+
- "Store technical artifacts in tech/"
|
|
108
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
109
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: code-review
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -61,13 +61,47 @@ behaviors:
|
|
|
61
61
|
workflow: planning-estimation
|
|
62
62
|
quality_gates: "${config.quality_gates}"
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
knowledge_library:
|
|
65
65
|
shared:
|
|
66
|
-
|
|
67
|
-
|
|
66
|
+
context: "KnowledgeLibrary/context.txt"
|
|
67
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
68
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
69
|
+
remote:
|
|
70
|
+
- "${remote.documentation}"
|
|
68
71
|
personal:
|
|
69
|
-
|
|
72
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
73
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
74
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
75
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
76
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
77
|
+
control:
|
|
78
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
79
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
80
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
81
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
70
82
|
|
|
71
83
|
communication:
|
|
72
84
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
73
85
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
86
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
87
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
88
|
+
processed_dir: "inbox/processed/"
|
|
89
|
+
|
|
90
|
+
protocols:
|
|
91
|
+
startup:
|
|
92
|
+
first_session:
|
|
93
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
94
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
95
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
96
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
97
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
98
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
99
|
+
subsequent:
|
|
100
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
101
|
+
completion:
|
|
102
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
103
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
104
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
105
|
+
- "Store technical artifacts in tech/"
|
|
106
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
107
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|
|
@@ -62,13 +62,47 @@ behaviors:
|
|
|
62
62
|
workflow: ticket-implementation
|
|
63
63
|
quality_gates: "${config.quality_gates}"
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
knowledge_library:
|
|
66
66
|
shared:
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
context: "KnowledgeLibrary/context.txt"
|
|
68
|
+
architecture: "KnowledgeLibrary/architecture.txt"
|
|
69
|
+
prd: "KnowledgeLibrary/prd.txt"
|
|
70
|
+
remote:
|
|
71
|
+
- "${remote.documentation}"
|
|
69
72
|
personal:
|
|
70
|
-
|
|
73
|
+
context: "KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
74
|
+
history: "KnowledgeLibrary/${agent.role}/history/"
|
|
75
|
+
inbox: "KnowledgeLibrary/${agent.role}/inbox/"
|
|
76
|
+
outbox: "KnowledgeLibrary/${agent.role}/outbox/"
|
|
77
|
+
tech: "KnowledgeLibrary/${agent.role}/tech/"
|
|
78
|
+
control:
|
|
79
|
+
objectives: "KnowledgeLibrary/${agent.role}/control/objectives.txt"
|
|
80
|
+
decisions: "KnowledgeLibrary/${agent.role}/control/decisions.txt"
|
|
81
|
+
dependencies: "KnowledgeLibrary/${agent.role}/control/dependencies.txt"
|
|
82
|
+
index: "KnowledgeLibrary/${agent.role}/control/index.txt"
|
|
71
83
|
|
|
72
84
|
communication:
|
|
73
85
|
inbox: "KnowledgeLibrary/${agent.role}/inbox"
|
|
74
86
|
outbox: "KnowledgeLibrary/${agent.role}/outbox"
|
|
87
|
+
message_format: "YYYYMMDD_HHMM-[agent-name]-[topic].txt"
|
|
88
|
+
outbox_format: "YYYYMMDD_HHMM-to-[agent-name]-[topic].txt"
|
|
89
|
+
processed_dir: "inbox/processed/"
|
|
90
|
+
|
|
91
|
+
protocols:
|
|
92
|
+
startup:
|
|
93
|
+
first_session:
|
|
94
|
+
- "Read KnowledgeLibrary/context.txt"
|
|
95
|
+
- "Read shared documentation (${remote.documentation} primary, local fallback)"
|
|
96
|
+
- "Read KnowledgeLibrary/${agent.role}/context/current.txt"
|
|
97
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for unprocessed messages"
|
|
98
|
+
- "Review control/objectives.txt and control/decisions.txt"
|
|
99
|
+
- "Read workflow definitions from KnowledgeLibrary/workflows.md"
|
|
100
|
+
subsequent:
|
|
101
|
+
- "Check KnowledgeLibrary/${agent.role}/inbox/ for new messages only"
|
|
102
|
+
completion:
|
|
103
|
+
- "Update KnowledgeLibrary/${agent.role}/context/current.txt with current state"
|
|
104
|
+
- "Archive previous context to history/ if significant changes (format: YYYYMMDD_HHMM-context.txt)"
|
|
105
|
+
- "Log key decisions to control/decisions.txt (format: [YYYY-MM-DD] Decision: [summary] | Rationale: [why])"
|
|
106
|
+
- "Store technical artifacts in tech/"
|
|
107
|
+
- "Mark inbox messages as processed (move to inbox/processed/)"
|
|
108
|
+
- "Send completion summary to engineering-manager inbox"
|