@forwardimpact/pathway 0.3.0 → 0.5.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.
Files changed (90) hide show
  1. package/app/commands/agent.js +1 -1
  2. package/app/commands/behaviour.js +1 -1
  3. package/app/commands/command-factory.js +2 -2
  4. package/app/commands/discipline.js +1 -1
  5. package/app/commands/driver.js +1 -1
  6. package/app/commands/grade.js +1 -1
  7. package/app/commands/index.js +4 -3
  8. package/app/commands/serve.js +2 -2
  9. package/app/commands/site.js +22 -2
  10. package/app/commands/skill.js +57 -3
  11. package/app/commands/stage.js +1 -1
  12. package/app/commands/tool.js +112 -0
  13. package/app/commands/track.js +1 -1
  14. package/app/components/card.js +11 -1
  15. package/app/components/checklist.js +6 -4
  16. package/app/components/code-display.js +153 -0
  17. package/app/components/markdown-textarea.js +153 -0
  18. package/app/css/bundles/app.css +14 -0
  19. package/app/css/components/badges.css +15 -8
  20. package/app/css/components/forms.css +55 -0
  21. package/app/css/components/layout.css +12 -0
  22. package/app/css/components/surfaces.css +71 -3
  23. package/app/css/components/typography.css +1 -2
  24. package/app/css/pages/agent-builder.css +11 -102
  25. package/app/css/pages/detail.css +60 -0
  26. package/app/css/pages/job-builder.css +0 -42
  27. package/app/css/tokens.css +3 -0
  28. package/app/formatters/agent/dom.js +26 -71
  29. package/app/formatters/agent/profile.js +67 -10
  30. package/app/formatters/agent/skill.js +48 -6
  31. package/app/formatters/grade/dom.js +6 -6
  32. package/app/formatters/job/description.js +21 -16
  33. package/app/formatters/job/dom.js +9 -70
  34. package/app/formatters/json-ld.js +1 -1
  35. package/app/formatters/shared.js +58 -0
  36. package/app/formatters/skill/dom.js +70 -3
  37. package/app/formatters/skill/markdown.js +18 -0
  38. package/app/formatters/skill/shared.js +14 -4
  39. package/app/formatters/stage/microdata.js +2 -2
  40. package/app/formatters/stage/shared.js +3 -3
  41. package/app/formatters/tool/shared.js +78 -0
  42. package/app/handout-main.js +19 -18
  43. package/app/index.html +16 -3
  44. package/app/lib/card-mappers.js +91 -17
  45. package/app/lib/render.js +4 -0
  46. package/app/lib/yaml-loader.js +12 -1
  47. package/app/main.js +4 -0
  48. package/app/model/agent.js +47 -23
  49. package/app/model/checklist.js +2 -2
  50. package/app/model/derivation.js +5 -5
  51. package/app/model/levels.js +4 -2
  52. package/app/model/loader.js +12 -1
  53. package/app/model/validation.js +77 -11
  54. package/app/pages/agent-builder.js +121 -77
  55. package/app/pages/landing.js +35 -15
  56. package/app/pages/self-assessment.js +7 -5
  57. package/app/pages/skill.js +5 -17
  58. package/app/pages/stage.js +12 -8
  59. package/app/pages/tool.js +50 -0
  60. package/app/slide-main.js +1 -1
  61. package/app/slides/chapter.js +8 -8
  62. package/app/slides/index.js +26 -26
  63. package/app/slides/overview.js +8 -8
  64. package/app/slides/skill.js +1 -0
  65. package/bin/pathway.js +31 -16
  66. package/examples/capabilities/business.yaml +18 -18
  67. package/examples/capabilities/delivery.yaml +54 -37
  68. package/examples/capabilities/people.yaml +1 -1
  69. package/examples/capabilities/reliability.yaml +130 -115
  70. package/examples/capabilities/scale.yaml +39 -37
  71. package/examples/disciplines/engineering_management.yaml +1 -1
  72. package/examples/framework.yaml +21 -9
  73. package/examples/grades.yaml +5 -7
  74. package/examples/self-assessments.yaml +1 -1
  75. package/examples/stages.yaml +18 -10
  76. package/package.json +2 -1
  77. package/templates/agent.template.md +47 -17
  78. package/templates/job.template.md +8 -8
  79. package/templates/skill.template.md +33 -11
  80. package/examples/agents/.claude/skills/architecture-design/SKILL.md +0 -130
  81. package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +0 -131
  82. package/examples/agents/.claude/skills/code-quality-review/SKILL.md +0 -108
  83. package/examples/agents/.claude/skills/devops-cicd/SKILL.md +0 -142
  84. package/examples/agents/.claude/skills/full-stack-development/SKILL.md +0 -134
  85. package/examples/agents/.claude/skills/sre-practices/SKILL.md +0 -163
  86. package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +0 -164
  87. package/examples/agents/.github/agents/se-platform-code.agent.md +0 -132
  88. package/examples/agents/.github/agents/se-platform-plan.agent.md +0 -131
  89. package/examples/agents/.github/agents/se-platform-review.agent.md +0 -136
  90. package/examples/agents/.vscode/settings.json +0 -8
@@ -1,7 +1,7 @@
1
1
  # yaml-language-server: $schema=https://schema.forwardimpact.team/json/capability.schema.json
2
2
 
3
3
  name: Business
4
- emoji: 💼
4
+ emojiIcon: 💼
5
5
  displayOrder: 8
6
6
  description: |
7
7
  Understanding and driving business value.
@@ -102,10 +102,10 @@ skills:
102
102
  initiatives.
103
103
  agent:
104
104
  name: technical-writing
105
- description: |
106
- Guide for creating clear technical documentation. Use when writing
107
- READMEs, API docs, specifications, or any technical content that needs
108
- to be clear and accurate.
105
+ description: Guide for creating clear technical documentation.
106
+ useWhen: |
107
+ Writing READMEs, API docs, specifications, or any technical content
108
+ that needs to be clear and accurate.
109
109
  stages:
110
110
  specify:
111
111
  focus: |
@@ -172,18 +172,18 @@ skills:
172
172
  - Audience can discover and find it
173
173
  - Search and navigation are updated
174
174
  - Maintenance schedule is established
175
- reference: |
176
- ## Document Types
175
+ implementationReference: |
176
+ ## Document Types
177
177
 
178
- | Type | Purpose | Key Sections |
179
- |------|---------|--------------|
180
- | README | Project overview | Description, Getting Started, Usage |
181
- | API Docs | API reference | Endpoints, Parameters, Examples |
182
- | Spec | Design proposal | Problem, Solution, Alternatives |
183
- | Tutorial | Learning guide | Objective, Steps, Outcomes |
178
+ | Type | Purpose | Key Sections |
179
+ |------|---------|--------------|
180
+ | README | Project overview | Description, Getting Started, Usage |
181
+ | API Docs | API reference | Endpoints, Parameters, Examples |
182
+ | Spec | Design proposal | Problem, Solution, Alternatives |
183
+ | Tutorial | Learning guide | Objective, Steps, Outcomes |
184
184
 
185
- ## Writing Principles
186
- - Use simple, direct language
187
- - One idea per sentence
188
- - Active voice over passive
189
- - Lead with most important info
185
+ ## Writing Principles
186
+ - Use simple, direct language
187
+ - One idea per sentence
188
+ - Active voice over passive
189
+ - Lead with most important info
@@ -1,7 +1,7 @@
1
1
  # yaml-language-server: $schema=https://schema.forwardimpact.team/json/capability.schema.json
2
2
 
3
3
  name: Delivery
4
- emoji: 🚀
4
+ emojiIcon: 🚀
5
5
  displayOrder: 1
6
6
  description: |
7
7
  Building and shipping solutions that solve real problems.
@@ -73,10 +73,11 @@ skills:
73
73
  architecture authority.
74
74
  agent:
75
75
  name: architecture-design
76
- description: |
76
+ description:
77
77
  Guide for designing software systems and making architectural decisions.
78
- Use when asked to design a system, evaluate architecture options, or
79
- make structural decisions about code organization.
78
+ useWhen: |
79
+ Asked to design a system, evaluate architecture options, or make
80
+ structural decisions about code organization.
80
81
  stages:
81
82
  specify:
82
83
  focus: |
@@ -144,23 +145,23 @@ skills:
144
145
  - Performance meets requirements
145
146
  - Monitoring confirms design assumptions
146
147
  - Operational procedures are documented
147
- reference: |
148
- ## Common Patterns
148
+ implementationReference: |
149
+ ## Common Patterns
149
150
 
150
- ### Service Architecture
151
- - **Microservices**: Independent deployment, clear boundaries
152
- - **Monolith**: Simpler deployment, easier refactoring
153
- - **Modular monolith**: Boundaries within single deployment
151
+ ### Service Architecture
152
+ - **Microservices**: Independent deployment, clear boundaries
153
+ - **Monolith**: Simpler deployment, easier refactoring
154
+ - **Modular monolith**: Boundaries within single deployment
154
155
 
155
- ### Data Patterns
156
- - **Event sourcing**: Full audit trail, complex queries
157
- - **CQRS**: Separate read and write models
158
- - **Repository pattern**: Abstract data access
156
+ ### Data Patterns
157
+ - **Event sourcing**: Full audit trail, complex queries
158
+ - **CQRS**: Separate read and write models
159
+ - **Repository pattern**: Abstract data access
159
160
 
160
- ### Communication Patterns
161
- - **REST**: Synchronous, request-response
162
- - **Event-driven**: Asynchronous, loose coupling
163
- - **gRPC**: Efficient, strongly typed
161
+ ### Communication Patterns
162
+ - **REST**: Synchronous, request-response
163
+ - **Event-driven**: Asynchronous, loose coupling
164
+ - **gRPC**: Efficient, strongly typed
164
165
  - id: full_stack_development
165
166
  name: Full-Stack Development
166
167
  human:
@@ -195,10 +196,11 @@ skills:
195
196
  polymathic engineering.
196
197
  agent:
197
198
  name: full-stack-development
198
- description: |
199
+ description:
199
200
  Guide for building complete solutions across the full technology stack.
200
- Use when implementing features spanning frontend, backend, database,
201
- and infrastructure layers.
201
+ useWhen: |
202
+ Implementing features spanning frontend, backend, database, and
203
+ infrastructure layers.
202
204
  stages:
203
205
  specify:
204
206
  focus: |
@@ -266,23 +268,38 @@ skills:
266
268
  - Feature works end-to-end in production
267
269
  - No errors in monitoring
268
270
  - Performance meets requirements
269
- reference: |
270
- ## Technology Stack
271
+ toolReferences:
272
+ - name: Terraform
273
+ url: https://developer.hashicorp.com/terraform/docs
274
+ simpleIcon: terraform
275
+ description: Infrastructure as code tool
276
+ useWhen: Provisioning and managing cloud infrastructure
277
+ - name: CloudFormation
278
+ url: https://docs.aws.amazon.com/cloudformation/
279
+ description: AWS infrastructure as code service
280
+ useWhen: Managing AWS infrastructure as code
281
+ - name: Docker
282
+ url: https://docs.docker.com/
283
+ simpleIcon: docker
284
+ description: Container platform
285
+ useWhen: Containerizing applications or managing container environments
286
+ implementationReference: |
287
+ ## Technology Stack
271
288
 
272
- ### Primary Languages
273
- - **JavaScript/TypeScript**: Frontend and Node.js backend
274
- - **Python**: Backend APIs and data processing
289
+ ### Primary Languages
290
+ - **JavaScript/TypeScript**: Frontend and Node.js backend
291
+ - **Python**: Backend APIs and data processing
275
292
 
276
- ### Infrastructure
277
- - **Terraform**: Cloud infrastructure as code
278
- - **CloudFormation**: AWS-specific infrastructure
279
- - **Docker**: Containerization
293
+ ### Infrastructure
294
+ - **Terraform**: Cloud infrastructure as code
295
+ - **CloudFormation**: AWS-specific infrastructure
296
+ - **Docker**: Containerization
280
297
 
281
- ## Layer Responsibilities
298
+ ## Layer Responsibilities
282
299
 
283
- | Layer | Responsibilities |
284
- |-------|-----------------|
285
- | Frontend | UI/UX, client validation, API integration |
286
- | Backend | Business logic, auth, external services |
287
- | Database | Persistence, queries, migrations |
288
- | Infrastructure | Deployment, scaling, monitoring |
300
+ | Layer | Responsibilities |
301
+ |-------|-----------------|
302
+ | Frontend | UI/UX, client validation, API integration |
303
+ | Backend | Business logic, auth, external services |
304
+ | Database | Persistence, queries, migrations |
305
+ | Infrastructure | Deployment, scaling, monitoring |
@@ -1,7 +1,7 @@
1
1
  # yaml-language-server: $schema=https://schema.forwardimpact.team/json/capability.schema.json
2
2
 
3
3
  name: People
4
- emoji: 👥
4
+ emojiIcon: 👥
5
5
  displayOrder: 6
6
6
  description: |
7
7
  Growing individuals and building effective teams.
@@ -1,7 +1,7 @@
1
1
  # yaml-language-server: $schema=https://schema.forwardimpact.team/json/capability.schema.json
2
2
 
3
3
  name: Reliability
4
- emoji: 🛡️
4
+ emojiIcon: 🛡️
5
5
  displayOrder: 5
6
6
  description: |
7
7
  Ensuring systems are dependable, secure, and observable.
@@ -72,9 +72,11 @@ skills:
72
72
  agent:
73
73
  name: devops-cicd
74
74
  description: |
75
- Guide for building CI/CD pipelines, managing infrastructure as code, and
76
- implementing deployment best practices. Use when setting up pipelines,
77
- containerizing applications, or configuring infrastructure.
75
+ Guide for building CI/CD pipelines, managing infrastructure as code,
76
+ and implementing deployment best practices.
77
+ useWhen: |
78
+ Setting up pipelines, containerizing applications, or configuring
79
+ infrastructure.
78
80
  stages:
79
81
  specify:
80
82
  focus: |
@@ -153,64 +155,75 @@ skills:
153
155
  - Workflows tested in production
154
156
  - Monitoring confirms healthy operation
155
157
  - First deployment through pipeline succeeded
156
- reference: |
157
- ## CI/CD Pipeline Stages
158
+ toolReferences:
159
+ - name: Terraform
160
+ url: https://developer.hashicorp.com/terraform/docs
161
+ simpleIcon: terraform
162
+ description: Infrastructure as code tool
163
+ useWhen: Provisioning and managing cloud infrastructure
164
+ - name: Docker
165
+ url: https://docs.docker.com/
166
+ simpleIcon: docker
167
+ description: Container platform
168
+ useWhen: Containerizing applications or managing container environments
169
+ implementationReference: |
170
+ ## CI/CD Pipeline Stages
158
171
 
159
- ### Build
160
- - Install dependencies
161
- - Compile/transpile code
162
- - Generate artifacts
163
- - Cache dependencies for speed
172
+ ### Build
173
+ - Install dependencies
174
+ - Compile/transpile code
175
+ - Generate artifacts
176
+ - Cache dependencies for speed
164
177
 
165
- ### Test
166
- - Run unit tests
167
- - Run integration tests
168
- - Static analysis and linting
169
- - Security scanning
178
+ ### Test
179
+ - Run unit tests
180
+ - Run integration tests
181
+ - Static analysis and linting
182
+ - Security scanning
170
183
 
171
- ### Deploy
172
- - Deploy to staging environment
173
- - Run smoke tests
174
- - Deploy to production
175
- - Verify deployment health
184
+ ### Deploy
185
+ - Deploy to staging environment
186
+ - Run smoke tests
187
+ - Deploy to production
188
+ - Verify deployment health
176
189
 
177
- ## Infrastructure as Code
190
+ ## Infrastructure as Code
178
191
 
179
- ### Terraform
180
- ```hcl
181
- # Define resources declaratively
182
- resource "aws_instance" "example" {
183
- ami = "ami-0c55b159cbfafe1f0"
184
- instance_type = "t2.micro"
185
- }
186
- ```
192
+ ### Terraform
193
+ ```hcl
194
+ # Define resources declaratively
195
+ resource "aws_instance" "example" {
196
+ ami = "ami-0c55b159cbfafe1f0"
197
+ instance_type = "t2.micro"
198
+ }
199
+ ```
187
200
 
188
- ### Docker
189
- ```dockerfile
190
- FROM node:18-alpine
191
- WORKDIR /app
192
- COPY package*.json ./
193
- RUN npm ci --only=production
194
- COPY . .
195
- CMD ["node", "server.js"]
196
- ```
201
+ ### Docker
202
+ ```dockerfile
203
+ FROM node:18-alpine
204
+ WORKDIR /app
205
+ COPY package*.json ./
206
+ RUN npm ci --only=production
207
+ COPY . .
208
+ CMD ["node", "server.js"]
209
+ ```
197
210
 
198
- ## Deployment Strategies
211
+ ## Deployment Strategies
199
212
 
200
- ### Rolling Deployment
201
- - Gradual replacement of instances
202
- - Zero downtime
203
- - Easy rollback
213
+ ### Rolling Deployment
214
+ - Gradual replacement of instances
215
+ - Zero downtime
216
+ - Easy rollback
204
217
 
205
- ### Blue-Green Deployment
206
- - Two identical environments
207
- - Switch traffic atomically
208
- - Fast rollback
218
+ ### Blue-Green Deployment
219
+ - Two identical environments
220
+ - Switch traffic atomically
221
+ - Fast rollback
209
222
 
210
- ### Canary Deployment
211
- - Route small percentage to new version
212
- - Monitor for issues
213
- - Gradually increase traffic
223
+ ### Canary Deployment
224
+ - Route small percentage to new version
225
+ - Monitor for issues
226
+ - Gradually increase traffic
214
227
  - id: sre_practices
215
228
  name: Site Reliability Engineering
216
229
  human:
@@ -241,8 +254,10 @@ skills:
241
254
  name: sre-practices
242
255
  description: |
243
256
  Guide for ensuring system reliability through observability, incident
244
- response, and capacity planning. Use when designing monitoring, handling
245
- incidents, setting SLOs, or improving system resilience.
257
+ response, and capacity planning.
258
+ useWhen: |
259
+ Designing monitoring, handling incidents, setting SLOs, or improving
260
+ system resilience.
246
261
  stages:
247
262
  specify:
248
263
  focus: |
@@ -322,78 +337,78 @@ skills:
322
337
  - Alerts fire correctly for SLO breaches
323
338
  - On-call team is trained and ready
324
339
  - Production readiness review is complete
325
- reference: |
326
- ## Service Level Concepts
340
+ implementationReference: |
341
+ ## Service Level Concepts
327
342
 
328
- ### SLI (Service Level Indicator)
329
- Quantitative measure of service behavior:
330
- - Request latency (p50, p95, p99)
331
- - Error rate (% of failed requests)
332
- - Availability (% of successful requests)
333
- - Throughput (requests per second)
343
+ ### SLI (Service Level Indicator)
344
+ Quantitative measure of service behavior:
345
+ - Request latency (p50, p95, p99)
346
+ - Error rate (% of failed requests)
347
+ - Availability (% of successful requests)
348
+ - Throughput (requests per second)
334
349
 
335
- ### SLO (Service Level Objective)
336
- Target value for an SLI:
337
- - "99.9% of requests complete in < 200ms"
338
- - "Error rate < 0.1% over 30 days"
339
- - "99.95% availability monthly"
350
+ ### SLO (Service Level Objective)
351
+ Target value for an SLI:
352
+ - "99.9% of requests complete in < 200ms"
353
+ - "Error rate < 0.1% over 30 days"
354
+ - "99.95% availability monthly"
340
355
 
341
- ### Error Budget
342
- Allowed unreliability: 100% - SLO
343
- - 99.9% SLO = 0.1% error budget
344
- - ~43 minutes downtime per month
345
- - Spend on features or reliability
356
+ ### Error Budget
357
+ Allowed unreliability: 100% - SLO
358
+ - 99.9% SLO = 0.1% error budget
359
+ - ~43 minutes downtime per month
360
+ - Spend on features or reliability
346
361
 
347
- ## Observability
362
+ ## Observability
348
363
 
349
- ### Three Pillars
350
- - **Metrics**: Aggregated numeric data (counters, gauges, histograms)
351
- - **Logs**: Discrete event records with context
352
- - **Traces**: Request flow across services
364
+ ### Three Pillars
365
+ - **Metrics**: Aggregated numeric data (counters, gauges, histograms)
366
+ - **Logs**: Discrete event records with context
367
+ - **Traces**: Request flow across services
353
368
 
354
- ### Alerting Principles
355
- - Alert on symptoms, not causes
356
- - Every alert should be actionable
357
- - Reduce noise ruthlessly
358
- - Page only for user-impacting issues
359
- - Use severity levels appropriately
369
+ ### Alerting Principles
370
+ - Alert on symptoms, not causes
371
+ - Every alert should be actionable
372
+ - Reduce noise ruthlessly
373
+ - Page only for user-impacting issues
374
+ - Use severity levels appropriately
360
375
 
361
- ## Incident Response
376
+ ## Incident Response
362
377
 
363
- ### Incident Lifecycle
364
- 1. **Detection**: Automated alerts or user reports
365
- 2. **Triage**: Assess severity and impact
366
- 3. **Mitigation**: Stop the bleeding first
367
- 4. **Resolution**: Fix the underlying issue
368
- 5. **Post-mortem**: Learn and improve
378
+ ### Incident Lifecycle
379
+ 1. **Detection**: Automated alerts or user reports
380
+ 2. **Triage**: Assess severity and impact
381
+ 3. **Mitigation**: Stop the bleeding first
382
+ 4. **Resolution**: Fix the underlying issue
383
+ 5. **Post-mortem**: Learn and improve
369
384
 
370
- ### During an Incident
371
- - Communicate early and often
372
- - Focus on mitigation before root cause
373
- - Document actions in real-time
374
- - Escalate when needed
375
- - Update stakeholders regularly
385
+ ### During an Incident
386
+ - Communicate early and often
387
+ - Focus on mitigation before root cause
388
+ - Document actions in real-time
389
+ - Escalate when needed
390
+ - Update stakeholders regularly
376
391
 
377
- ## Post-Mortem Process
392
+ ## Post-Mortem Process
378
393
 
379
- ### Blameless Culture
380
- - Focus on systems, not individuals
381
- - Assume good intentions
382
- - Ask "how did the system allow this?"
383
- - Share findings openly
394
+ ### Blameless Culture
395
+ - Focus on systems, not individuals
396
+ - Assume good intentions
397
+ - Ask "how did the system allow this?"
398
+ - Share findings openly
384
399
 
385
- ### Post-Mortem Template
386
- 1. Incident summary
387
- 2. Timeline of events
388
- 3. Root cause analysis
389
- 4. What went well
390
- 5. What could be improved
391
- 6. Action items with owners
400
+ ### Post-Mortem Template
401
+ 1. Incident summary
402
+ 2. Timeline of events
403
+ 3. Root cause analysis
404
+ 4. What went well
405
+ 5. What could be improved
406
+ 6. Action items with owners
392
407
 
393
- ## Resilience Patterns
408
+ ## Resilience Patterns
394
409
 
395
- - **Timeouts**: Don't wait forever
396
- - **Retries**: With exponential backoff
397
- - **Circuit breakers**: Fail fast when downstream is unhealthy
398
- - **Bulkheads**: Isolate failures
399
- - **Graceful degradation**: Partial functionality over total failure
410
+ - **Timeouts**: Don't wait forever
411
+ - **Retries**: With exponential backoff
412
+ - **Circuit breakers**: Fail fast when downstream is unhealthy
413
+ - **Bulkheads**: Isolate failures
414
+ - **Graceful degradation**: Partial functionality over total failure
@@ -1,7 +1,7 @@
1
1
  # yaml-language-server: $schema=https://schema.forwardimpact.team/json/capability.schema.json
2
2
 
3
3
  name: Scale
4
- emoji: 📐
4
+ emojiIcon: 📐
5
5
  displayOrder: 4
6
6
  description: |
7
7
  Building systems that grow gracefully.
@@ -71,10 +71,10 @@ skills:
71
71
  recognized as an authority on cloud architecture.
72
72
  agent:
73
73
  name: cloud-platforms
74
- description: |
75
- Guide for working with cloud infrastructure and services. Use when
76
- deploying to cloud, selecting cloud services, configuring infrastructure,
77
- or solving cloud-specific challenges.
74
+ description: Guide for working with cloud infrastructure and services.
75
+ useWhen: |
76
+ Deploying to cloud, selecting cloud services, configuring
77
+ infrastructure, or solving cloud-specific challenges.
78
78
  stages:
79
79
  specify:
80
80
  focus: |
@@ -141,21 +141,21 @@ skills:
141
141
  - Failover tested in production
142
142
  - Monitoring is operational
143
143
  - Cost tracking is active
144
- reference: |
145
- ## Service Categories
144
+ implementationReference: |
145
+ ## Service Categories
146
146
 
147
- | Category | Services | Use Case |
148
- |----------|----------|----------|
149
- | Compute | EC2, ECS, Lambda | VMs, Containers, Serverless |
150
- | Storage | S3, EBS, EFS | Objects, Blocks, Files |
151
- | Database | RDS, DynamoDB | SQL, NoSQL |
152
- | Messaging | SQS, SNS, Kinesis | Queues, Pub/Sub, Streaming |
147
+ | Category | Services | Use Case |
148
+ |----------|----------|----------|
149
+ | Compute | EC2, ECS, Lambda | VMs, Containers, Serverless |
150
+ | Storage | S3, EBS, EFS | Objects, Blocks, Files |
151
+ | Database | RDS, DynamoDB | SQL, NoSQL |
152
+ | Messaging | SQS, SNS, Kinesis | Queues, Pub/Sub, Streaming |
153
153
 
154
- ## Cloud-Native Principles
155
- - Design for failure
156
- - Use managed services
157
- - Automate everything
158
- - Monitor and alert
154
+ ## Cloud-Native Principles
155
+ - Design for failure
156
+ - Use managed services
157
+ - Automate everything
158
+ - Monitor and alert
159
159
  - id: code_quality
160
160
  name: Code Quality & Review
161
161
  human:
@@ -188,9 +188,9 @@ skills:
188
188
  engineering.
189
189
  agent:
190
190
  name: code-quality-review
191
- description: |
192
- Guide for writing quality code and conducting code reviews. Use when
193
- reviewing code, checking for best practices, or verifying AI-generated
191
+ description: Guide for writing quality code and conducting code reviews.
192
+ useWhen: |
193
+ Reviewing code, checking for best practices, or verifying AI-generated
194
194
  code before committing.
195
195
  stages:
196
196
  specify:
@@ -258,13 +258,13 @@ skills:
258
258
  - CI pipeline passes all checks
259
259
  - No regressions detected
260
260
  - Deployment verified
261
- reference: |
262
- ## Review Checklist
261
+ implementationReference: |
262
+ ## Review Checklist
263
263
 
264
- 1. **Correctness**: Does it work as intended?
265
- 2. **Tests**: Is it properly tested?
266
- 3. **Maintainability**: Will it be easy to change?
267
- 4. **Style**: Does it follow conventions?
264
+ 1. **Correctness**: Does it work as intended?
265
+ 2. **Tests**: Is it properly tested?
266
+ 3. **Maintainability**: Will it be easy to change?
267
+ 4. **Style**: Does it follow conventions?
268
268
  - id: data_modeling
269
269
  name: Data Modeling
270
270
  human:
@@ -297,8 +297,10 @@ skills:
297
297
  name: data-modeling
298
298
  description: |
299
299
  Guide for designing database schemas, data structures, and data
300
- architectures. Use when designing tables, optimizing queries, or
301
- making decisions about data storage technologies.
300
+ architectures.
301
+ useWhen: |
302
+ Designing tables, optimizing queries, or making decisions about data
303
+ storage technologies.
302
304
  stages:
303
305
  specify:
304
306
  focus: |
@@ -365,12 +367,12 @@ skills:
365
367
  - Data integrity verified
366
368
  - Performance meets requirements
367
369
  - Rollback procedure tested
368
- reference: |
369
- ## Storage Selection Guide
370
+ implementationReference: |
371
+ ## Storage Selection Guide
370
372
 
371
- | Type | Use When | Examples |
372
- |------|----------|----------|
373
- | Relational | ACID needed, complex queries | PostgreSQL, MySQL |
374
- | Document | Flexible schema, hierarchical | MongoDB, Firestore |
375
- | Key-Value | Simple lookups, caching | Redis, DynamoDB |
376
- | Time Series | Temporal data, metrics | InfluxDB, TimescaleDB |
373
+ | Type | Use When | Examples |
374
+ |------|----------|----------|
375
+ | Relational | ACID needed, complex queries | PostgreSQL, MySQL |
376
+ | Document | Flexible schema, hierarchical | MongoDB, Firestore |
377
+ | Key-Value | Simple lookups, caching | Redis, DynamoDB |
378
+ | Time Series | Temporal data, metrics | InfluxDB, TimescaleDB |
@@ -3,7 +3,7 @@
3
3
  specialization: Engineering Management
4
4
  roleTitle: Engineering Manager
5
5
  isManagement: true
6
- minGrade: SE
6
+ minGrade: L2
7
7
 
8
8
  description: |
9
9
  People and delivery leadership, focusing on team effectiveness,