@deimoscloud/coreai 0.1.0
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/.prettierrc +9 -0
- package/AGENT_SPEC.md +347 -0
- package/ARCHITECTURE.md +547 -0
- package/DRAFT_PRD.md +1440 -0
- package/IMPLEMENTATION_PLAN.md +256 -0
- package/PRODUCT.md +473 -0
- package/README.md +303 -0
- package/WORKFLOWS.md +295 -0
- package/agents/_templates/ic-engineer.md +185 -0
- package/agents/_templates/reviewer.md +182 -0
- package/agents/backend-engineer.yaml +72 -0
- package/agents/devops-engineer.yaml +72 -0
- package/agents/engineering-manager.yaml +70 -0
- package/agents/examples/android-engineer.md +302 -0
- package/agents/examples/backend-engineer.md +320 -0
- package/agents/examples/devops-engineer.md +742 -0
- package/agents/examples/engineering-manager.md +469 -0
- package/agents/examples/frontend-engineer.md +58 -0
- package/agents/examples/product-manager.md +315 -0
- package/agents/examples/qa-engineer.md +371 -0
- package/agents/examples/security-engineer.md +525 -0
- package/agents/examples/solutions-architect.md +351 -0
- package/agents/examples/wearos-engineer.md +359 -0
- package/agents/frontend-engineer.yaml +72 -0
- package/commands/core/check-inbox.md +34 -0
- package/commands/core/delegate.md +30 -0
- package/commands/core/git-commit.md +144 -0
- package/commands/core/pr-create.md +193 -0
- package/commands/core/review.md +56 -0
- package/commands/core/sprint-status.md +65 -0
- package/commands/optional/docs-update.md +200 -0
- package/commands/optional/jira-create.md +200 -0
- package/commands/optional/jira-transition.md +184 -0
- package/commands/optional/worktree-cleanup.md +167 -0
- package/commands/optional/worktree-setup.md +110 -0
- package/dist/cli/index.js +4037 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/index.d.ts +2978 -0
- package/dist/index.js +3867 -0
- package/dist/index.js.map +1 -0
- package/eslint.config.js +29 -0
- package/jest.config.js +22 -0
- package/knowledge-library/README.md +118 -0
- package/knowledge-library/android-engineer/context/current.txt +42 -0
- package/knowledge-library/android-engineer/control/decisions.txt +9 -0
- package/knowledge-library/android-engineer/control/dependencies.txt +19 -0
- package/knowledge-library/android-engineer/control/objectives.txt +26 -0
- package/knowledge-library/android-engineer/history/.gitkeep +0 -0
- package/knowledge-library/android-engineer/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/android-engineer/outbox/.gitkeep +0 -0
- package/knowledge-library/android-engineer/tech/.gitkeep +0 -0
- package/knowledge-library/architecture.txt +61 -0
- package/knowledge-library/backend-engineer/context/current.txt +42 -0
- package/knowledge-library/backend-engineer/control/decisions.txt +9 -0
- package/knowledge-library/backend-engineer/control/dependencies.txt +19 -0
- package/knowledge-library/backend-engineer/control/objectives.txt +26 -0
- package/knowledge-library/backend-engineer/history/.gitkeep +0 -0
- package/knowledge-library/backend-engineer/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/backend-engineer/outbox/.gitkeep +0 -0
- package/knowledge-library/backend-engineer/tech/.gitkeep +0 -0
- package/knowledge-library/context.txt +52 -0
- package/knowledge-library/devops-engineer/context/current.txt +42 -0
- package/knowledge-library/devops-engineer/control/decisions.txt +9 -0
- package/knowledge-library/devops-engineer/control/dependencies.txt +19 -0
- package/knowledge-library/devops-engineer/control/objectives.txt +26 -0
- package/knowledge-library/devops-engineer/history/.gitkeep +0 -0
- package/knowledge-library/devops-engineer/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/devops-engineer/outbox/.gitkeep +0 -0
- package/knowledge-library/devops-engineer/tech/.gitkeep +0 -0
- package/knowledge-library/engineering-manager/context/current.txt +40 -0
- package/knowledge-library/engineering-manager/control/decisions.txt +9 -0
- package/knowledge-library/engineering-manager/control/objectives.txt +27 -0
- package/knowledge-library/engineering-manager/history/.gitkeep +0 -0
- package/knowledge-library/engineering-manager/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/engineering-manager/outbox/.gitkeep +0 -0
- package/knowledge-library/engineering-manager/tech/.gitkeep +0 -0
- package/knowledge-library/prd.txt +81 -0
- package/knowledge-library/product-manager/context/current.txt +42 -0
- package/knowledge-library/product-manager/control/decisions.txt +9 -0
- package/knowledge-library/product-manager/control/dependencies.txt +19 -0
- package/knowledge-library/product-manager/control/objectives.txt +26 -0
- package/knowledge-library/product-manager/history/.gitkeep +0 -0
- package/knowledge-library/product-manager/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/product-manager/outbox/.gitkeep +0 -0
- package/knowledge-library/product-manager/tech/.gitkeep +0 -0
- package/knowledge-library/qa-engineer/context/current.txt +42 -0
- package/knowledge-library/qa-engineer/control/decisions.txt +9 -0
- package/knowledge-library/qa-engineer/control/dependencies.txt +19 -0
- package/knowledge-library/qa-engineer/control/objectives.txt +26 -0
- package/knowledge-library/qa-engineer/history/.gitkeep +0 -0
- package/knowledge-library/qa-engineer/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/qa-engineer/outbox/.gitkeep +0 -0
- package/knowledge-library/qa-engineer/tech/.gitkeep +0 -0
- package/knowledge-library/security-engineer/context/current.txt +42 -0
- package/knowledge-library/security-engineer/control/decisions.txt +9 -0
- package/knowledge-library/security-engineer/control/dependencies.txt +19 -0
- package/knowledge-library/security-engineer/control/objectives.txt +26 -0
- package/knowledge-library/security-engineer/history/.gitkeep +0 -0
- package/knowledge-library/security-engineer/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/security-engineer/outbox/.gitkeep +0 -0
- package/knowledge-library/security-engineer/tech/.gitkeep +0 -0
- package/knowledge-library/solutions-architect/context/current.txt +42 -0
- package/knowledge-library/solutions-architect/control/decisions.txt +9 -0
- package/knowledge-library/solutions-architect/control/dependencies.txt +19 -0
- package/knowledge-library/solutions-architect/control/objectives.txt +26 -0
- package/knowledge-library/solutions-architect/history/.gitkeep +0 -0
- package/knowledge-library/solutions-architect/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/solutions-architect/outbox/.gitkeep +0 -0
- package/knowledge-library/solutions-architect/tech/.gitkeep +0 -0
- package/knowledge-library/wearos-engineer/context/current.txt +42 -0
- package/knowledge-library/wearos-engineer/control/decisions.txt +9 -0
- package/knowledge-library/wearos-engineer/control/dependencies.txt +19 -0
- package/knowledge-library/wearos-engineer/control/objectives.txt +26 -0
- package/knowledge-library/wearos-engineer/history/.gitkeep +0 -0
- package/knowledge-library/wearos-engineer/inbox/processed/.gitkeep +0 -0
- package/knowledge-library/wearos-engineer/outbox/.gitkeep +0 -0
- package/knowledge-library/wearos-engineer/tech/.gitkeep +0 -0
- package/package.json +66 -0
- package/schemas/agent.schema.json +171 -0
- package/schemas/coreai.config.schema.json +257 -0
- package/scripts/add-agent.sh +323 -0
- package/scripts/install.sh +354 -0
- package/src/adapters/factory.test.ts +386 -0
- package/src/adapters/factory.ts +305 -0
- package/src/adapters/index.ts +113 -0
- package/src/adapters/interfaces.ts +268 -0
- package/src/adapters/mcp/client.test.ts +130 -0
- package/src/adapters/mcp/client.ts +451 -0
- package/src/adapters/mcp/discovery.test.ts +315 -0
- package/src/adapters/mcp/discovery.ts +340 -0
- package/src/adapters/mcp/index.ts +66 -0
- package/src/adapters/mcp/mapper.test.ts +218 -0
- package/src/adapters/mcp/mapper.ts +536 -0
- package/src/adapters/mcp/registry.test.ts +433 -0
- package/src/adapters/mcp/registry.ts +550 -0
- package/src/adapters/mcp/types.ts +258 -0
- package/src/adapters/native/filesystem.test.ts +350 -0
- package/src/adapters/native/filesystem.ts +393 -0
- package/src/adapters/native/github.test.ts +173 -0
- package/src/adapters/native/github.ts +627 -0
- package/src/adapters/native/index.ts +22 -0
- package/src/adapters/native/selector.test.ts +224 -0
- package/src/adapters/native/selector.ts +150 -0
- package/src/adapters/types.ts +270 -0
- package/src/agents/compiler.test.ts +399 -0
- package/src/agents/compiler.ts +359 -0
- package/src/agents/index.ts +36 -0
- package/src/agents/loader.test.ts +319 -0
- package/src/agents/loader.ts +143 -0
- package/src/agents/resolver.test.ts +282 -0
- package/src/agents/resolver.ts +262 -0
- package/src/agents/types.ts +87 -0
- package/src/cache/index.ts +38 -0
- package/src/cache/interfaces.ts +283 -0
- package/src/cache/manager.test.ts +266 -0
- package/src/cache/manager.ts +388 -0
- package/src/cache/provider.test.ts +485 -0
- package/src/cache/provider.ts +745 -0
- package/src/cache/types.test.ts +192 -0
- package/src/cache/types.ts +313 -0
- package/src/cli/commands/build.test.ts +248 -0
- package/src/cli/commands/build.ts +244 -0
- package/src/cli/commands/cache.test.ts +221 -0
- package/src/cli/commands/cache.ts +229 -0
- package/src/cli/commands/index.ts +63 -0
- package/src/cli/commands/init.test.ts +173 -0
- package/src/cli/commands/init.ts +296 -0
- package/src/cli/commands/skills.test.ts +272 -0
- package/src/cli/commands/skills.ts +348 -0
- package/src/cli/commands/status.test.ts +392 -0
- package/src/cli/commands/status.ts +332 -0
- package/src/cli/commands/sync.test.ts +213 -0
- package/src/cli/commands/sync.ts +251 -0
- package/src/cli/commands/validate.test.ts +216 -0
- package/src/cli/commands/validate.ts +340 -0
- package/src/cli/index.test.ts +190 -0
- package/src/cli/index.ts +493 -0
- package/src/commands/context.test.ts +163 -0
- package/src/commands/context.ts +111 -0
- package/src/commands/index.ts +56 -0
- package/src/commands/loader.test.ts +273 -0
- package/src/commands/loader.ts +355 -0
- package/src/commands/registry.test.ts +384 -0
- package/src/commands/registry.ts +248 -0
- package/src/commands/runner.test.ts +297 -0
- package/src/commands/runner.ts +222 -0
- package/src/commands/types.ts +361 -0
- package/src/config/index.ts +19 -0
- package/src/config/loader.test.ts +262 -0
- package/src/config/loader.ts +188 -0
- package/src/config/types.ts +154 -0
- package/src/context/index.ts +14 -0
- package/src/context/loader.test.ts +334 -0
- package/src/context/loader.ts +357 -0
- package/src/index.test.ts +13 -0
- package/src/index.ts +244 -0
- package/src/knowledge-library/index.ts +44 -0
- package/src/knowledge-library/manager.test.ts +536 -0
- package/src/knowledge-library/manager.ts +804 -0
- package/src/knowledge-library/types.ts +432 -0
- package/src/skills/generator.test.ts +602 -0
- package/src/skills/generator.ts +491 -0
- package/src/skills/index.ts +27 -0
- package/src/skills/templates.ts +520 -0
- package/src/skills/types.ts +251 -0
- package/templates/completion-report.md +72 -0
- package/templates/feedback.md +56 -0
- package/templates/project-files/CLAUDE.md.template +109 -0
- package/templates/project-files/coreai.json.example +47 -0
- package/templates/project-files/mcp.json.template +20 -0
- package/templates/review-complete.md +64 -0
- package/templates/review-request.md +67 -0
- package/templates/task-assignment.md +51 -0
- package/tsconfig.build.json +4 -0
- package/tsconfig.json +26 -0
- package/tsup.config.ts +23 -0
package/eslint.config.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import eslint from '@eslint/js';
|
|
2
|
+
import tseslint from 'typescript-eslint';
|
|
3
|
+
import prettier from 'eslint-plugin-prettier/recommended';
|
|
4
|
+
|
|
5
|
+
export default tseslint.config(
|
|
6
|
+
eslint.configs.recommended,
|
|
7
|
+
...tseslint.configs.strict,
|
|
8
|
+
...tseslint.configs.stylistic,
|
|
9
|
+
prettier,
|
|
10
|
+
{
|
|
11
|
+
languageOptions: {
|
|
12
|
+
parserOptions: {
|
|
13
|
+
project: true,
|
|
14
|
+
tsconfigRootDir: import.meta.dirname,
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
rules: {
|
|
18
|
+
'@typescript-eslint/no-unused-vars': [
|
|
19
|
+
'error',
|
|
20
|
+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
|
|
21
|
+
],
|
|
22
|
+
'@typescript-eslint/consistent-type-imports': 'error',
|
|
23
|
+
'@typescript-eslint/no-import-type-side-effects': 'error',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
ignores: ['dist/**', 'node_modules/**', '*.js'],
|
|
28
|
+
}
|
|
29
|
+
);
|
package/jest.config.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
2
|
+
export default {
|
|
3
|
+
preset: 'ts-jest/presets/default-esm',
|
|
4
|
+
testEnvironment: 'node',
|
|
5
|
+
roots: ['<rootDir>/src'],
|
|
6
|
+
testMatch: ['**/*.test.ts'],
|
|
7
|
+
moduleNameMapper: {
|
|
8
|
+
'^(\\.{1,2}/.*)\\.js$': '$1',
|
|
9
|
+
},
|
|
10
|
+
transform: {
|
|
11
|
+
'^.+\\.tsx?$': [
|
|
12
|
+
'ts-jest',
|
|
13
|
+
{
|
|
14
|
+
useESM: true,
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
},
|
|
18
|
+
extensionsToTreatAsEsm: ['.ts'],
|
|
19
|
+
collectCoverageFrom: ['src/**/*.ts', '!src/**/*.test.ts', '!src/**/*.d.ts'],
|
|
20
|
+
coverageDirectory: 'coverage',
|
|
21
|
+
coverageReporters: ['text', 'lcov', 'html'],
|
|
22
|
+
};
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# Knowledge Library
|
|
2
|
+
|
|
3
|
+
Shared context and agent communication hub for the development team.
|
|
4
|
+
|
|
5
|
+
## Structure
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
knowledge-library/
|
|
9
|
+
├── README.md # This file
|
|
10
|
+
├── context.txt # Overall project state (EM updates)
|
|
11
|
+
├── architecture.txt # Architecture decisions (EM updates)
|
|
12
|
+
├── prd.txt # Product requirements (PM/EM updates)
|
|
13
|
+
├── workflows.md # Symlink or copy of ../WORKFLOWS.md
|
|
14
|
+
│
|
|
15
|
+
├── [agent-name]/ # Per-agent directories
|
|
16
|
+
│ ├── inbox/ # Messages received from other agents
|
|
17
|
+
│ │ └── processed/ # Completed messages (archived)
|
|
18
|
+
│ ├── outbox/ # Copies of sent messages
|
|
19
|
+
│ ├── context/ # Agent's current state
|
|
20
|
+
│ │ └── current.txt # Current context file
|
|
21
|
+
│ ├── history/ # Archived context files
|
|
22
|
+
│ ├── tech/ # Technical docs, specs, designs
|
|
23
|
+
│ └── control/ # Objectives, decisions, dependencies
|
|
24
|
+
│ ├── objectives.txt
|
|
25
|
+
│ ├── decisions.txt
|
|
26
|
+
│ └── dependencies.txt
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Shared Context Files
|
|
30
|
+
|
|
31
|
+
### context.txt
|
|
32
|
+
Overall project state updated by Engineering Manager:
|
|
33
|
+
- Current sprint and priorities
|
|
34
|
+
- Active work and blockers
|
|
35
|
+
- Recent decisions
|
|
36
|
+
- Team status
|
|
37
|
+
|
|
38
|
+
### architecture.txt
|
|
39
|
+
Technical architecture decisions:
|
|
40
|
+
- System design
|
|
41
|
+
- Technology choices
|
|
42
|
+
- Data models
|
|
43
|
+
- Integration patterns
|
|
44
|
+
|
|
45
|
+
### prd.txt
|
|
46
|
+
Product requirements:
|
|
47
|
+
- Feature specifications
|
|
48
|
+
- User stories
|
|
49
|
+
- Acceptance criteria
|
|
50
|
+
- Priorities
|
|
51
|
+
|
|
52
|
+
## Agent Directories
|
|
53
|
+
|
|
54
|
+
Each agent has their own directory for:
|
|
55
|
+
|
|
56
|
+
| Directory | Purpose | Who Updates |
|
|
57
|
+
|-----------|---------|-------------|
|
|
58
|
+
| `inbox/` | Receive tasks and messages | Other agents write here |
|
|
59
|
+
| `inbox/processed/` | Archive of completed messages | Owner moves here |
|
|
60
|
+
| `outbox/` | Copies of sent messages | Owner writes here |
|
|
61
|
+
| `context/current.txt` | Agent's current state | Owner updates |
|
|
62
|
+
| `history/` | Archived context snapshots | Owner archives |
|
|
63
|
+
| `tech/` | Technical docs, specs | Owner creates |
|
|
64
|
+
| `control/` | Objectives, decisions | Owner maintains |
|
|
65
|
+
|
|
66
|
+
## Message File Naming
|
|
67
|
+
|
|
68
|
+
### Inbox (received)
|
|
69
|
+
```
|
|
70
|
+
YYYYMMDD_HHMM-[from-agent]-[topic].md
|
|
71
|
+
Example: 20260105_1430-engineering-manager-SUR-70-assignment.md
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Inbox Processed (archived)
|
|
75
|
+
```
|
|
76
|
+
PROCESSED_YYYYMMDD_HHMM_[original-filename].md
|
|
77
|
+
Example: PROCESSED_20260105_1600_20260105_1430-engineering-manager-SUR-70-assignment.md
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Outbox (sent copies)
|
|
81
|
+
```
|
|
82
|
+
YYYYMMDD_HHMM-to-[recipient]-[topic].md
|
|
83
|
+
Example: 20260105_1430-to-wearos-engineer-SUR-70-assignment.md
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Usage Rules
|
|
87
|
+
|
|
88
|
+
1. **Root files** (context.txt, architecture.txt, prd.txt) - Only EM updates
|
|
89
|
+
2. **All agents read** root files at startup
|
|
90
|
+
3. **All agents update** their own context before finishing
|
|
91
|
+
4. **All agents send** completion summaries to EM inbox
|
|
92
|
+
5. **Move processed messages** to `inbox/processed/` to prevent duplicate work
|
|
93
|
+
|
|
94
|
+
## Permissions Matrix
|
|
95
|
+
|
|
96
|
+
| Agent | Create Tickets | Update Root Files | Own Directory |
|
|
97
|
+
|-------|:--------------:|:-----------------:|:-------------:|
|
|
98
|
+
| engineering-manager | ✅ | ✅ | ✅ |
|
|
99
|
+
| solutions-architect | ✅ | ❌ | ✅ |
|
|
100
|
+
| security-engineer | ✅ | ❌ | ✅ |
|
|
101
|
+
| qa-engineer | ✅ | ❌ | ✅ |
|
|
102
|
+
| product-manager | ✅ | ✅ (prd.txt) | ✅ |
|
|
103
|
+
| backend-engineer | ❌ | ❌ | ✅ |
|
|
104
|
+
| android-engineer | ❌ | ❌ | ✅ |
|
|
105
|
+
| wearos-engineer | ❌ | ❌ | ✅ |
|
|
106
|
+
| devops-engineer | ❌ | ❌ | ✅ |
|
|
107
|
+
|
|
108
|
+
## External Integration
|
|
109
|
+
|
|
110
|
+
This Knowledge Library works alongside:
|
|
111
|
+
- **Jira** - Primary ticket tracking (MCP access)
|
|
112
|
+
- **Confluence** - Primary documentation (MCP access)
|
|
113
|
+
- **GitHub** - Code and PRs (gh CLI)
|
|
114
|
+
|
|
115
|
+
Local files serve as:
|
|
116
|
+
- Async communication between agents
|
|
117
|
+
- Fallback when external services unavailable
|
|
118
|
+
- Context persistence between sessions
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# [Agent Name] - Current Context
|
|
2
|
+
|
|
3
|
+
> **Last Updated:** [YYYY-MM-DD HH:MM]
|
|
4
|
+
|
|
5
|
+
## Current Focus
|
|
6
|
+
|
|
7
|
+
[What you're currently working on]
|
|
8
|
+
|
|
9
|
+
## Active Tasks
|
|
10
|
+
|
|
11
|
+
| Ticket | Status | Branch | PR |
|
|
12
|
+
|--------|--------|--------|-----|
|
|
13
|
+
| [KEY-XX] | [in-progress/pr-created/in-review] | [branch] | [#XX or -] |
|
|
14
|
+
|
|
15
|
+
## Work in Progress
|
|
16
|
+
|
|
17
|
+
### [KEY-XX] - [Title]
|
|
18
|
+
- **Status:** [status]
|
|
19
|
+
- **Branch:** [branch name]
|
|
20
|
+
- **Progress:**
|
|
21
|
+
- [x] Completed item
|
|
22
|
+
- [ ] Pending item
|
|
23
|
+
- **Blockers:** [None or description]
|
|
24
|
+
|
|
25
|
+
## Pending Reviews
|
|
26
|
+
|
|
27
|
+
| PR | Ticket | Requested By | Status |
|
|
28
|
+
|----|--------|--------------|--------|
|
|
29
|
+
| #XX | [KEY-XX] | [agent] | [pending/done] |
|
|
30
|
+
|
|
31
|
+
## Technical Notes
|
|
32
|
+
|
|
33
|
+
[Any technical context to remember]
|
|
34
|
+
|
|
35
|
+
## Next Actions
|
|
36
|
+
|
|
37
|
+
1. [ ] [Action 1]
|
|
38
|
+
2. [ ] [Action 2]
|
|
39
|
+
|
|
40
|
+
## Questions/Blockers
|
|
41
|
+
|
|
42
|
+
- [Any questions for EM or other agents]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# [Agent Name] - Dependencies
|
|
2
|
+
|
|
3
|
+
## Waiting On
|
|
4
|
+
|
|
5
|
+
| Dependency | From | Ticket | Status |
|
|
6
|
+
|------------|------|--------|--------|
|
|
7
|
+
| [what you need] | [agent] | [KEY-XX] | [waiting/resolved] |
|
|
8
|
+
|
|
9
|
+
## Providing To
|
|
10
|
+
|
|
11
|
+
| Deliverable | To | Ticket | Status |
|
|
12
|
+
|-------------|-----|--------|--------|
|
|
13
|
+
| [what you're providing] | [agent] | [KEY-XX] | [pending/delivered] |
|
|
14
|
+
|
|
15
|
+
## External Dependencies
|
|
16
|
+
|
|
17
|
+
| Dependency | Type | Status |
|
|
18
|
+
|------------|------|--------|
|
|
19
|
+
| [e.g., API access] | [service/data/approval] | [status] |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# [Agent Name] - Objectives
|
|
2
|
+
|
|
3
|
+
## Primary Objectives
|
|
4
|
+
|
|
5
|
+
1. [Primary objective based on role]
|
|
6
|
+
2. [Primary objective based on role]
|
|
7
|
+
|
|
8
|
+
## Current Sprint Objectives
|
|
9
|
+
|
|
10
|
+
- [ ] [Objective 1]
|
|
11
|
+
- [ ] [Objective 2]
|
|
12
|
+
|
|
13
|
+
## Quality Standards
|
|
14
|
+
|
|
15
|
+
- [ ] All code has tests
|
|
16
|
+
- [ ] Lint checks pass
|
|
17
|
+
- [ ] Static analysis passes
|
|
18
|
+
- [ ] Acceptance criteria met
|
|
19
|
+
|
|
20
|
+
## Workflow Responsibilities
|
|
21
|
+
|
|
22
|
+
- Move ticket to "In Progress" when starting
|
|
23
|
+
- Create branch with correct naming
|
|
24
|
+
- Run quality checks before PR
|
|
25
|
+
- Move ticket to "In Review" after PR
|
|
26
|
+
- Send completion report to EM
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Architecture Context
|
|
2
|
+
|
|
3
|
+
> **Last Updated:** [YYYY-MM-DD HH:MM]
|
|
4
|
+
> **Updated By:** engineering-manager (with solutions-architect input)
|
|
5
|
+
|
|
6
|
+
## System Overview
|
|
7
|
+
|
|
8
|
+
[High-level description of the system architecture]
|
|
9
|
+
|
|
10
|
+
## Components
|
|
11
|
+
|
|
12
|
+
### [Component 1]
|
|
13
|
+
- **Purpose:** [description]
|
|
14
|
+
- **Technology:** [tech stack]
|
|
15
|
+
- **Owner:** [agent]
|
|
16
|
+
|
|
17
|
+
### [Component 2]
|
|
18
|
+
- **Purpose:** [description]
|
|
19
|
+
- **Technology:** [tech stack]
|
|
20
|
+
- **Owner:** [agent]
|
|
21
|
+
|
|
22
|
+
## Technology Stack
|
|
23
|
+
|
|
24
|
+
| Layer | Technology | Notes |
|
|
25
|
+
|-------|------------|-------|
|
|
26
|
+
| [Layer] | [Tech] | [Notes] |
|
|
27
|
+
|
|
28
|
+
## Architecture Principles
|
|
29
|
+
|
|
30
|
+
1. **[Principle 1]** - [description]
|
|
31
|
+
2. **[Principle 2]** - [description]
|
|
32
|
+
3. **[Principle 3]** - [description]
|
|
33
|
+
|
|
34
|
+
## Key Decisions
|
|
35
|
+
|
|
36
|
+
| Date | Decision | Status | ADR |
|
|
37
|
+
|------|----------|--------|-----|
|
|
38
|
+
| [YYYY-MM-DD] | [decision] | [Active/Superseded] | [link] |
|
|
39
|
+
|
|
40
|
+
## Data Model
|
|
41
|
+
|
|
42
|
+
### Core Entities
|
|
43
|
+
- **[Entity 1]:** [description]
|
|
44
|
+
- **[Entity 2]:** [description]
|
|
45
|
+
|
|
46
|
+
## Integration Points
|
|
47
|
+
|
|
48
|
+
| System | Integration Type | Owner |
|
|
49
|
+
|--------|-----------------|-------|
|
|
50
|
+
| [System] | [API/Event/etc] | [agent] |
|
|
51
|
+
|
|
52
|
+
## Constraints
|
|
53
|
+
|
|
54
|
+
- [Constraint 1]
|
|
55
|
+
- [Constraint 2]
|
|
56
|
+
|
|
57
|
+
## References
|
|
58
|
+
|
|
59
|
+
- [Link to detailed architecture docs]
|
|
60
|
+
- [Link to ADRs]
|
|
61
|
+
- [Link to diagrams]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# [Agent Name] - Current Context
|
|
2
|
+
|
|
3
|
+
> **Last Updated:** [YYYY-MM-DD HH:MM]
|
|
4
|
+
|
|
5
|
+
## Current Focus
|
|
6
|
+
|
|
7
|
+
[What you're currently working on]
|
|
8
|
+
|
|
9
|
+
## Active Tasks
|
|
10
|
+
|
|
11
|
+
| Ticket | Status | Branch | PR |
|
|
12
|
+
|--------|--------|--------|-----|
|
|
13
|
+
| [KEY-XX] | [in-progress/pr-created/in-review] | [branch] | [#XX or -] |
|
|
14
|
+
|
|
15
|
+
## Work in Progress
|
|
16
|
+
|
|
17
|
+
### [KEY-XX] - [Title]
|
|
18
|
+
- **Status:** [status]
|
|
19
|
+
- **Branch:** [branch name]
|
|
20
|
+
- **Progress:**
|
|
21
|
+
- [x] Completed item
|
|
22
|
+
- [ ] Pending item
|
|
23
|
+
- **Blockers:** [None or description]
|
|
24
|
+
|
|
25
|
+
## Pending Reviews
|
|
26
|
+
|
|
27
|
+
| PR | Ticket | Requested By | Status |
|
|
28
|
+
|----|--------|--------------|--------|
|
|
29
|
+
| #XX | [KEY-XX] | [agent] | [pending/done] |
|
|
30
|
+
|
|
31
|
+
## Technical Notes
|
|
32
|
+
|
|
33
|
+
[Any technical context to remember]
|
|
34
|
+
|
|
35
|
+
## Next Actions
|
|
36
|
+
|
|
37
|
+
1. [ ] [Action 1]
|
|
38
|
+
2. [ ] [Action 2]
|
|
39
|
+
|
|
40
|
+
## Questions/Blockers
|
|
41
|
+
|
|
42
|
+
- [Any questions for EM or other agents]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# [Agent Name] - Dependencies
|
|
2
|
+
|
|
3
|
+
## Waiting On
|
|
4
|
+
|
|
5
|
+
| Dependency | From | Ticket | Status |
|
|
6
|
+
|------------|------|--------|--------|
|
|
7
|
+
| [what you need] | [agent] | [KEY-XX] | [waiting/resolved] |
|
|
8
|
+
|
|
9
|
+
## Providing To
|
|
10
|
+
|
|
11
|
+
| Deliverable | To | Ticket | Status |
|
|
12
|
+
|-------------|-----|--------|--------|
|
|
13
|
+
| [what you're providing] | [agent] | [KEY-XX] | [pending/delivered] |
|
|
14
|
+
|
|
15
|
+
## External Dependencies
|
|
16
|
+
|
|
17
|
+
| Dependency | Type | Status |
|
|
18
|
+
|------------|------|--------|
|
|
19
|
+
| [e.g., API access] | [service/data/approval] | [status] |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# [Agent Name] - Objectives
|
|
2
|
+
|
|
3
|
+
## Primary Objectives
|
|
4
|
+
|
|
5
|
+
1. [Primary objective based on role]
|
|
6
|
+
2. [Primary objective based on role]
|
|
7
|
+
|
|
8
|
+
## Current Sprint Objectives
|
|
9
|
+
|
|
10
|
+
- [ ] [Objective 1]
|
|
11
|
+
- [ ] [Objective 2]
|
|
12
|
+
|
|
13
|
+
## Quality Standards
|
|
14
|
+
|
|
15
|
+
- [ ] All code has tests
|
|
16
|
+
- [ ] Lint checks pass
|
|
17
|
+
- [ ] Static analysis passes
|
|
18
|
+
- [ ] Acceptance criteria met
|
|
19
|
+
|
|
20
|
+
## Workflow Responsibilities
|
|
21
|
+
|
|
22
|
+
- Move ticket to "In Progress" when starting
|
|
23
|
+
- Create branch with correct naming
|
|
24
|
+
- Run quality checks before PR
|
|
25
|
+
- Move ticket to "In Review" after PR
|
|
26
|
+
- Send completion report to EM
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Project Context
|
|
2
|
+
|
|
3
|
+
> **Last Updated:** [YYYY-MM-DD HH:MM]
|
|
4
|
+
> **Updated By:** engineering-manager
|
|
5
|
+
|
|
6
|
+
## Current Sprint
|
|
7
|
+
|
|
8
|
+
**Sprint:** [Sprint Name/Number]
|
|
9
|
+
**Dates:** [Start] - [End]
|
|
10
|
+
**Goal:** [Sprint goal]
|
|
11
|
+
|
|
12
|
+
## Priorities
|
|
13
|
+
|
|
14
|
+
1. [Priority 1]
|
|
15
|
+
2. [Priority 2]
|
|
16
|
+
3. [Priority 3]
|
|
17
|
+
|
|
18
|
+
## Active Work
|
|
19
|
+
|
|
20
|
+
| Ticket | Assignee | Status | Notes |
|
|
21
|
+
|--------|----------|--------|-------|
|
|
22
|
+
| [KEY-XX] | [agent] | [status] | [notes] |
|
|
23
|
+
|
|
24
|
+
## Blockers
|
|
25
|
+
|
|
26
|
+
| Ticket | Blocker | Owner | Action Needed |
|
|
27
|
+
|--------|---------|-------|---------------|
|
|
28
|
+
| [KEY-XX] | [description] | [who] | [action] |
|
|
29
|
+
|
|
30
|
+
## Recent Decisions
|
|
31
|
+
|
|
32
|
+
| Date | Decision | Rationale |
|
|
33
|
+
|------|----------|-----------|
|
|
34
|
+
| [YYYY-MM-DD] | [decision] | [why] |
|
|
35
|
+
|
|
36
|
+
## Team Status
|
|
37
|
+
|
|
38
|
+
| Agent | Current Task | Status |
|
|
39
|
+
|-------|--------------|--------|
|
|
40
|
+
| engineering-manager | Coordination | Available |
|
|
41
|
+
| solutions-architect | - | Available |
|
|
42
|
+
| security-engineer | - | Available |
|
|
43
|
+
| backend-engineer | - | Available |
|
|
44
|
+
| android-engineer | - | Available |
|
|
45
|
+
| wearos-engineer | - | Available |
|
|
46
|
+
| qa-engineer | - | Available |
|
|
47
|
+
| devops-engineer | - | Available |
|
|
48
|
+
| product-manager | - | Available |
|
|
49
|
+
|
|
50
|
+
## Notes
|
|
51
|
+
|
|
52
|
+
[Any additional context for the team]
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# [Agent Name] - Current Context
|
|
2
|
+
|
|
3
|
+
> **Last Updated:** [YYYY-MM-DD HH:MM]
|
|
4
|
+
|
|
5
|
+
## Current Focus
|
|
6
|
+
|
|
7
|
+
[What you're currently working on]
|
|
8
|
+
|
|
9
|
+
## Active Tasks
|
|
10
|
+
|
|
11
|
+
| Ticket | Status | Branch | PR |
|
|
12
|
+
|--------|--------|--------|-----|
|
|
13
|
+
| [KEY-XX] | [in-progress/pr-created/in-review] | [branch] | [#XX or -] |
|
|
14
|
+
|
|
15
|
+
## Work in Progress
|
|
16
|
+
|
|
17
|
+
### [KEY-XX] - [Title]
|
|
18
|
+
- **Status:** [status]
|
|
19
|
+
- **Branch:** [branch name]
|
|
20
|
+
- **Progress:**
|
|
21
|
+
- [x] Completed item
|
|
22
|
+
- [ ] Pending item
|
|
23
|
+
- **Blockers:** [None or description]
|
|
24
|
+
|
|
25
|
+
## Pending Reviews
|
|
26
|
+
|
|
27
|
+
| PR | Ticket | Requested By | Status |
|
|
28
|
+
|----|--------|--------------|--------|
|
|
29
|
+
| #XX | [KEY-XX] | [agent] | [pending/done] |
|
|
30
|
+
|
|
31
|
+
## Technical Notes
|
|
32
|
+
|
|
33
|
+
[Any technical context to remember]
|
|
34
|
+
|
|
35
|
+
## Next Actions
|
|
36
|
+
|
|
37
|
+
1. [ ] [Action 1]
|
|
38
|
+
2. [ ] [Action 2]
|
|
39
|
+
|
|
40
|
+
## Questions/Blockers
|
|
41
|
+
|
|
42
|
+
- [Any questions for EM or other agents]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# [Agent Name] - Dependencies
|
|
2
|
+
|
|
3
|
+
## Waiting On
|
|
4
|
+
|
|
5
|
+
| Dependency | From | Ticket | Status |
|
|
6
|
+
|------------|------|--------|--------|
|
|
7
|
+
| [what you need] | [agent] | [KEY-XX] | [waiting/resolved] |
|
|
8
|
+
|
|
9
|
+
## Providing To
|
|
10
|
+
|
|
11
|
+
| Deliverable | To | Ticket | Status |
|
|
12
|
+
|-------------|-----|--------|--------|
|
|
13
|
+
| [what you're providing] | [agent] | [KEY-XX] | [pending/delivered] |
|
|
14
|
+
|
|
15
|
+
## External Dependencies
|
|
16
|
+
|
|
17
|
+
| Dependency | Type | Status |
|
|
18
|
+
|------------|------|--------|
|
|
19
|
+
| [e.g., API access] | [service/data/approval] | [status] |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# [Agent Name] - Objectives
|
|
2
|
+
|
|
3
|
+
## Primary Objectives
|
|
4
|
+
|
|
5
|
+
1. [Primary objective based on role]
|
|
6
|
+
2. [Primary objective based on role]
|
|
7
|
+
|
|
8
|
+
## Current Sprint Objectives
|
|
9
|
+
|
|
10
|
+
- [ ] [Objective 1]
|
|
11
|
+
- [ ] [Objective 2]
|
|
12
|
+
|
|
13
|
+
## Quality Standards
|
|
14
|
+
|
|
15
|
+
- [ ] All code has tests
|
|
16
|
+
- [ ] Lint checks pass
|
|
17
|
+
- [ ] Static analysis passes
|
|
18
|
+
- [ ] Acceptance criteria met
|
|
19
|
+
|
|
20
|
+
## Workflow Responsibilities
|
|
21
|
+
|
|
22
|
+
- Move ticket to "In Progress" when starting
|
|
23
|
+
- Create branch with correct naming
|
|
24
|
+
- Run quality checks before PR
|
|
25
|
+
- Move ticket to "In Review" after PR
|
|
26
|
+
- Send completion report to EM
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Engineering Manager - Current Context
|
|
2
|
+
|
|
3
|
+
> **Last Updated:** [YYYY-MM-DD HH:MM]
|
|
4
|
+
|
|
5
|
+
## Current Focus
|
|
6
|
+
|
|
7
|
+
[What you're currently working on]
|
|
8
|
+
|
|
9
|
+
## Active Delegations
|
|
10
|
+
|
|
11
|
+
| Ticket | Agent | Status | Last Update |
|
|
12
|
+
|--------|-------|--------|-------------|
|
|
13
|
+
| [KEY-XX] | [agent] | [delegated/in-progress/awaiting-review] | [date] |
|
|
14
|
+
|
|
15
|
+
## Pending Validations
|
|
16
|
+
|
|
17
|
+
| Ticket | Agent | Completion Report | Action Needed |
|
|
18
|
+
|--------|-------|-------------------|---------------|
|
|
19
|
+
| [KEY-XX] | [agent] | [received/pending] | [validate/assign-reviewer] |
|
|
20
|
+
|
|
21
|
+
## Open Reviews
|
|
22
|
+
|
|
23
|
+
| PR | Ticket | Reviewers | Status |
|
|
24
|
+
|----|--------|-----------|--------|
|
|
25
|
+
| #XX | [KEY-XX] | [agents] | [pending/approved/changes-requested] |
|
|
26
|
+
|
|
27
|
+
## Blockers to Resolve
|
|
28
|
+
|
|
29
|
+
| Issue | Affected | Action |
|
|
30
|
+
|-------|----------|--------|
|
|
31
|
+
| [description] | [tickets/agents] | [what to do] |
|
|
32
|
+
|
|
33
|
+
## Next Actions
|
|
34
|
+
|
|
35
|
+
1. [ ] [Action 1]
|
|
36
|
+
2. [ ] [Action 2]
|
|
37
|
+
|
|
38
|
+
## Notes
|
|
39
|
+
|
|
40
|
+
[Any context to remember for next session]
|