@deimoscloud/coreai 0.1.14 → 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/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 +38 -4
- 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 +41 -0
- package/dist/index.js +182 -31
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/agent.schema.json +140 -3
|
@@ -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"
|