@forwardimpact/schema 0.4.0 → 0.7.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 (48) hide show
  1. package/bin/fit-schema.js +2 -2
  2. package/examples/capabilities/business.yaml +27 -11
  3. package/examples/capabilities/delivery.yaml +65 -27
  4. package/examples/capabilities/people.yaml +1 -1
  5. package/examples/capabilities/reliability.yaml +85 -31
  6. package/examples/capabilities/scale.yaml +83 -31
  7. package/examples/framework.yaml +5 -1
  8. package/examples/questions/behaviours/outcome_ownership.yaml +226 -49
  9. package/examples/questions/behaviours/polymathic_knowledge.yaml +273 -45
  10. package/examples/questions/behaviours/precise_communication.yaml +246 -52
  11. package/examples/questions/behaviours/relentless_curiosity.yaml +246 -48
  12. package/examples/questions/behaviours/systems_thinking.yaml +236 -50
  13. package/examples/questions/capabilities/business.yaml +107 -0
  14. package/examples/questions/capabilities/delivery.yaml +104 -0
  15. package/examples/questions/capabilities/people.yaml +104 -0
  16. package/examples/questions/capabilities/reliability.yaml +103 -0
  17. package/examples/questions/capabilities/scale.yaml +103 -0
  18. package/examples/questions/skills/architecture_design.yaml +102 -51
  19. package/examples/questions/skills/cloud_platforms.yaml +90 -44
  20. package/examples/questions/skills/code_quality.yaml +86 -45
  21. package/examples/questions/skills/data_modeling.yaml +93 -43
  22. package/examples/questions/skills/devops.yaml +91 -44
  23. package/examples/questions/skills/full_stack_development.yaml +93 -45
  24. package/examples/questions/skills/sre_practices.yaml +92 -41
  25. package/examples/questions/skills/stakeholder_management.yaml +97 -46
  26. package/examples/questions/skills/team_collaboration.yaml +87 -40
  27. package/examples/questions/skills/technical_writing.yaml +89 -40
  28. package/examples/stages.yaml +52 -13
  29. package/package.json +9 -9
  30. package/schema/json/behaviour-questions.schema.json +53 -26
  31. package/schema/json/capability-questions.schema.json +95 -0
  32. package/schema/json/capability.schema.json +8 -7
  33. package/schema/json/framework.schema.json +13 -0
  34. package/schema/json/skill-questions.schema.json +34 -19
  35. package/schema/json/stages.schema.json +6 -6
  36. package/schema/rdf/behaviour-questions.ttl +39 -7
  37. package/schema/rdf/capability.ttl +15 -15
  38. package/schema/rdf/defs.ttl +3 -3
  39. package/schema/rdf/framework.ttl +38 -0
  40. package/schema/rdf/skill-questions.ttl +28 -1
  41. package/schema/rdf/stages.ttl +14 -14
  42. package/{lib → src}/levels.js +53 -101
  43. package/{lib → src}/loader.js +9 -5
  44. package/{lib → src}/modifiers.js +3 -3
  45. package/{lib → src}/validation.js +105 -79
  46. /package/{lib → src}/index-generator.js +0 -0
  47. /package/{lib → src}/index.js +0 -0
  48. /package/{lib → src}/schema-validation.js +0 -0
package/bin/fit-schema.js CHANGED
@@ -116,7 +116,7 @@ function formatValidationResults(result) {
116
116
  async function runValidate(dataDir) {
117
117
  console.log(`🔍 Validating data in: ${dataDir}\n`);
118
118
 
119
- const { runSchemaValidation, loadAllData } = await import("../lib/index.js");
119
+ const { runSchemaValidation, loadAllData } = await import("../src/index.js");
120
120
 
121
121
  // Load data first
122
122
  const data = await loadAllData(dataDir, { validate: false });
@@ -144,7 +144,7 @@ async function runValidate(dataDir) {
144
144
  async function runGenerateIndex(dataDir) {
145
145
  console.log(`📁 Generating index files in: ${dataDir}\n`);
146
146
 
147
- const { generateAllIndexes } = await import("../lib/index.js");
147
+ const { generateAllIndexes } = await import("../src/index.js");
148
148
 
149
149
  const results = await generateAllIndexes(dataDir);
150
150
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  name: Business
4
4
  emojiIcon: 💼
5
- displayOrder: 8
5
+ ordinalRank: 8
6
6
  description: |
7
7
  Understanding and driving business value.
8
8
  Includes domain knowledge, stakeholder management, strategic thinking,
@@ -111,49 +111,65 @@ skills:
111
111
  focus: |
112
112
  Define documentation requirements and audience needs.
113
113
  Clarify what the documentation must accomplish.
114
- activities:
114
+ readChecklist:
115
115
  - Identify target audience and their skill level
116
116
  - Document what questions the docs must answer
117
117
  - Define documentation type (README, API, spec, tutorial)
118
118
  - Specify accuracy and completeness requirements
119
119
  - Mark ambiguities with [NEEDS CLARIFICATION]
120
- ready:
120
+ confirmChecklist:
121
121
  - Audience is identified
122
122
  - Questions to answer are documented
123
123
  - Documentation type is chosen
124
124
  - Requirements are clear
125
125
  plan:
126
126
  focus: Understanding audience and planning documentation
127
- activities:
127
+ readChecklist:
128
128
  - Identify target audience and their needs
129
129
  - Determine document type and structure
130
130
  - List prerequisites and assumptions
131
131
  - Outline key sections and content
132
- ready:
132
+ confirmChecklist:
133
133
  - Audience is identified
134
134
  - Document type and structure planned
135
135
  - Prerequisites listed
136
136
  - Outline complete
137
+ onboard:
138
+ focus: |
139
+ Set up the documentation environment. Install documentation
140
+ tools, configure rendering, and verify preview works.
141
+ readChecklist:
142
+ - Install documentation framework (MkDocs, Docusaurus, etc.)
143
+ - Configure markdown linter (markdownlint)
144
+ - Set up diagram rendering (Mermaid, PlantUML)
145
+ - Configure spell checker (cspell)
146
+ - Verify documentation preview server works
147
+ confirmChecklist:
148
+ - Documentation framework builds without errors
149
+ - Markdown linter runs and catches issues
150
+ - Diagrams render correctly in preview
151
+ - Spell checker configured with project dictionary
152
+ - Preview server shows formatted documentation
137
153
  code:
138
154
  focus: Writing clear and accurate documentation
139
- activities:
155
+ readChecklist:
140
156
  - Write using simple, direct language
141
157
  - Structure content for scanning
142
158
  - Include tested, runnable examples
143
159
  - Define technical terms
144
- ready:
160
+ confirmChecklist:
145
161
  - Purpose clear in first paragraph
146
162
  - Examples are tested and work
147
163
  - Technical terms are defined
148
164
  - Structure supports scanning
149
165
  review:
150
166
  focus: Verifying documentation quality
151
- activities:
167
+ readChecklist:
152
168
  - Check accuracy against implementation
153
169
  - Verify examples are runnable
154
170
  - Review for clarity and completeness
155
171
  - Test with target audience if possible
156
- ready:
172
+ confirmChecklist:
157
173
  - Documentation matches implementation
158
174
  - All examples verified working
159
175
  - No ambiguous pronouns
@@ -162,12 +178,12 @@ skills:
162
178
  focus: |
163
179
  Publish documentation and ensure it reaches the audience.
164
180
  Set up maintenance process.
165
- activities:
181
+ readChecklist:
166
182
  - Publish to documentation site
167
183
  - Announce to relevant teams
168
184
  - Add to search indexes and navigation
169
185
  - Establish update and review schedule
170
- ready:
186
+ confirmChecklist:
171
187
  - Documentation is published and accessible
172
188
  - Audience can discover and find it
173
189
  - Search and navigation are updated
@@ -2,7 +2,7 @@
2
2
 
3
3
  name: Delivery
4
4
  emojiIcon: 🚀
5
- displayOrder: 1
5
+ ordinalRank: 1
6
6
  description: |
7
7
  Building and shipping solutions that solve real problems.
8
8
  Encompasses full-stack development, data integration, problem discovery,
@@ -83,51 +83,68 @@ skills:
83
83
  focus: |
84
84
  Define system requirements and constraints before design.
85
85
  Clarify functional and non-functional requirements.
86
- activities:
86
+ readChecklist:
87
87
  - Document functional requirements and use cases
88
88
  - Identify non-functional requirements (scale, latency,
89
89
  availability)
90
90
  - Document system constraints and integration points
91
91
  - Identify stakeholders and their concerns
92
92
  - Mark ambiguities with [NEEDS CLARIFICATION]
93
- ready:
93
+ confirmChecklist:
94
94
  - Functional requirements are documented
95
95
  - Non-functional requirements are specified
96
96
  - Constraints are identified
97
97
  - Stakeholder concerns are understood
98
98
  plan:
99
99
  focus: Understanding requirements and designing solutions
100
- activities:
100
+ readChecklist:
101
101
  - Gather context about existing systems and constraints
102
102
  - Clarify non-functional requirements (scale, latency, availability)
103
103
  - Identify key decisions that are hard to change later
104
104
  - Evaluate trade-offs between architectural options
105
105
  - Document approach with rationale
106
- ready:
106
+ confirmChecklist:
107
107
  - Requirements are clearly understood
108
108
  - Key decisions are documented with rationale
109
109
  - Trade-offs are explicit
110
110
  - Dependencies are identified
111
+ onboard:
112
+ focus: |
113
+ Set up the development environment for the planned
114
+ architecture. Install frameworks, configure project
115
+ structure, and verify tooling.
116
+ readChecklist:
117
+ - Install planned frameworks and dependencies
118
+ - Create project structure matching architecture design
119
+ - Configure Mermaid rendering for architecture docs
120
+ - Set up ADR directory for decision records
121
+ - Configure linter and formatter for the project
122
+ confirmChecklist:
123
+ - Project structure reflects architectural boundaries
124
+ - All planned frameworks installed and importable
125
+ - Documentation tooling renders diagrams correctly
126
+ - Linter and formatter configured and passing
127
+ - Build system compiles without errors
111
128
  code:
112
129
  focus: Implementing architecture faithfully while adapting to reality
113
- activities:
130
+ readChecklist:
114
131
  - Verify implementation aligns with design decisions
115
132
  - Implement interfaces and boundaries before internals
116
133
  - Document any deviations from design with rationale
117
134
  - Keep architecture documentation in sync with implementation
118
- ready:
135
+ confirmChecklist:
119
136
  - Implementation matches documented design
120
137
  - Deviations documented with rationale
121
138
  - Failure modes are considered and handled
122
139
  - Security implications are reviewed
123
140
  review:
124
141
  focus: Verifying architecture implementation and documentation
125
- activities:
142
+ readChecklist:
126
143
  - Compare implementation to design documentation
127
144
  - Verify all decisions were followed or documented
128
145
  - Assess maintainability and extensibility
129
146
  - Ensure architecture enables future changes
130
- ready:
147
+ confirmChecklist:
131
148
  - Design docs reflect actual implementation
132
149
  - Architecture decisions validated in practice
133
150
  - Scalability requirements addressed
@@ -135,12 +152,12 @@ skills:
135
152
  focus: |
136
153
  Deploy architecture and verify it performs as designed
137
154
  in production environment.
138
- activities:
155
+ readChecklist:
139
156
  - Deploy system components to production
140
157
  - Verify architectural boundaries work under load
141
158
  - Monitor performance against requirements
142
159
  - Document any operational learnings
143
- ready:
160
+ confirmChecklist:
144
161
  - System deployed successfully
145
162
  - Performance meets requirements
146
163
  - Monitoring confirms design assumptions
@@ -206,50 +223,69 @@ skills:
206
223
  focus: |
207
224
  Define full-stack feature requirements and acceptance criteria.
208
225
  Clarify user needs and system integration points.
209
- activities:
226
+ readChecklist:
210
227
  - Identify user stories and acceptance criteria
211
228
  - Document expected user interactions
212
229
  - Clarify integration requirements with existing systems
213
230
  - Define non-functional requirements (performance, security)
214
231
  - Mark ambiguities with [NEEDS CLARIFICATION]
215
- ready:
232
+ confirmChecklist:
216
233
  - User stories are documented
217
234
  - Acceptance criteria are defined
218
235
  - Integration points are identified
219
236
  - Non-functional requirements are clear
220
237
  plan:
221
238
  focus: Designing the complete solution across layers
222
- activities:
239
+ readChecklist:
223
240
  - Define the API contract between frontend and backend
224
241
  - Design database schema to support the feature
225
242
  - Plan infrastructure requirements
226
243
  - Identify cross-layer dependencies
227
- ready:
244
+ confirmChecklist:
228
245
  - API contract is defined
229
246
  - Database schema is designed
230
247
  - Infrastructure needs identified
231
248
  - Layer boundaries are clear
249
+ onboard:
250
+ focus: |
251
+ Set up the full-stack development environment.
252
+ Install dependencies for each layer and verify
253
+ connectivity between layers.
254
+ readChecklist:
255
+ - Install frontend dependencies (e.g., npm install)
256
+ - Install backend dependencies and runtime
257
+ - Start local database and verify connection
258
+ - Configure environment variables (.env files)
259
+ - Verify API layer can connect to database
260
+ - Set up linter and formatter for the project
261
+ confirmChecklist:
262
+ - Frontend dev server starts without errors
263
+ - Backend API responds to health checks
264
+ - Database is running and seeded with test data
265
+ - Environment variables configured for all layers
266
+ - Linter and formatter configured and passing
267
+ - Build commands succeed for all layers
232
268
  code:
233
269
  focus: Building vertically across all layers
234
- activities:
270
+ readChecklist:
235
271
  - Implement backend API endpoints
236
272
  - Build frontend components and integrate with API
237
273
  - Set up database migrations and queries
238
274
  - Configure infrastructure as code
239
275
  - Test across layer boundaries
240
- ready:
276
+ confirmChecklist:
241
277
  - Frontend connects to backend correctly
242
278
  - Database schema supports the feature
243
279
  - Error handling spans all layers
244
280
  - Feature works end-to-end
245
281
  review:
246
282
  focus: Verifying integration across the stack
247
- activities:
283
+ readChecklist:
248
284
  - Test complete user flows end-to-end
249
285
  - Verify error handling at each layer
250
286
  - Check deployment pipeline works
251
287
  - Validate monitoring and logging
252
- ready:
288
+ confirmChecklist:
253
289
  - End-to-end tests pass
254
290
  - Deployment is automated
255
291
  - Cross-layer errors are handled gracefully
@@ -257,13 +293,13 @@ skills:
257
293
  focus: |
258
294
  Deploy full-stack feature to production and verify end-to-end
259
295
  functionality in live environment.
260
- activities:
296
+ readChecklist:
261
297
  - Deploy backend services
262
298
  - Deploy frontend changes
263
299
  - Run database migrations
264
300
  - Verify feature works in production
265
301
  - Monitor for errors and performance issues
266
- ready:
302
+ confirmChecklist:
267
303
  - All components deployed successfully
268
304
  - Feature works end-to-end in production
269
305
  - No errors in monitoring
@@ -273,16 +309,18 @@ skills:
273
309
  url: https://developer.hashicorp.com/terraform/docs
274
310
  simpleIcon: terraform
275
311
  description: Infrastructure as code tool
276
- useWhen: Provisioning and managing cloud infrastructure
312
+ useWhen: Provisioning and managing cloud infrastructure as code
277
313
  - name: CloudFormation
278
314
  url: https://docs.aws.amazon.com/cloudformation/
279
315
  description: AWS infrastructure as code service
280
- useWhen: Managing AWS infrastructure as code
281
- - name: Docker
282
- url: https://docs.docker.com/
316
+ useWhen: Managing cloud infrastructure using declarative templates
317
+ - name: Colima
318
+ url: https://github.com/abiosoft/colima
283
319
  simpleIcon: docker
284
- description: Container platform
285
- useWhen: Containerizing applications or managing container environments
320
+ description: Container runtime for macOS with Docker-compatible CLI
321
+ useWhen:
322
+ Running containers locally, building images, or containerizing
323
+ applications
286
324
  implementationReference: |
287
325
  ## Technology Stack
288
326
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  name: People
4
4
  emojiIcon: 👥
5
- displayOrder: 6
5
+ ordinalRank: 6
6
6
  description: |
7
7
  Growing individuals and building effective teams.
8
8
  Includes mentoring, coaching, hiring, performance management,
@@ -2,7 +2,7 @@
2
2
 
3
3
  name: Reliability
4
4
  emojiIcon: 🛡️
5
- displayOrder: 5
5
+ ordinalRank: 5
6
6
  description: |
7
7
  Ensuring systems are dependable, secure, and observable.
8
8
  Includes DevOps practices, security, monitoring, incident response,
@@ -82,13 +82,13 @@ skills:
82
82
  focus: |
83
83
  Define CI/CD and infrastructure requirements.
84
84
  Clarify deployment strategy and operational needs.
85
- activities:
85
+ readChecklist:
86
86
  - Document deployment frequency requirements
87
87
  - Identify rollback and recovery requirements
88
88
  - Specify monitoring and alerting needs
89
89
  - Define security and compliance constraints
90
90
  - Mark ambiguities with [NEEDS CLARIFICATION]
91
- ready:
91
+ confirmChecklist:
92
92
  - Deployment requirements are documented
93
93
  - Recovery requirements are specified
94
94
  - Monitoring needs are identified
@@ -97,29 +97,45 @@ skills:
97
97
  focus: |
98
98
  Plan CI/CD pipeline architecture and infrastructure requirements.
99
99
  Consider deployment strategies and monitoring needs.
100
- activities:
100
+ readChecklist:
101
101
  - Define pipeline stages (build, test, deploy)
102
102
  - Identify infrastructure requirements
103
103
  - Plan deployment strategy (rolling, blue-green, canary)
104
104
  - Consider monitoring and alerting needs
105
105
  - Plan secret management approach
106
- ready:
106
+ confirmChecklist:
107
107
  - Pipeline architecture is documented
108
108
  - Deployment strategy is chosen and justified
109
109
  - Infrastructure requirements are identified
110
110
  - Monitoring approach is defined
111
+ onboard:
112
+ focus: |
113
+ Set up the CI/CD and infrastructure development environment.
114
+ Install pipeline tools, container runtime, and IaC tooling.
115
+ readChecklist:
116
+ - Install container runtime (Docker/Colima)
117
+ - Install infrastructure as code tools (Terraform)
118
+ - Configure CI/CD service credentials
119
+ - Initialize Terraform workspace and backend
120
+ - Set up secret management for pipeline credentials
121
+ confirmChecklist:
122
+ - Container runtime builds and runs images
123
+ - Terraform initialized with providers
124
+ - CI/CD credentials configured securely
125
+ - Pipeline configuration file created
126
+ - Secret management is in place
111
127
  code:
112
128
  focus: |
113
129
  Implement CI/CD pipelines and infrastructure as code. Follow
114
130
  best practices for containerization and deployment automation.
115
- activities:
131
+ readChecklist:
116
132
  - Configure CI/CD pipeline stages
117
133
  - Implement infrastructure as code (Terraform, CloudFormation)
118
134
  - Create Dockerfiles with security best practices
119
135
  - Set up monitoring and alerting
120
136
  - Configure secret management
121
137
  - Implement deployment automation
122
- ready:
138
+ confirmChecklist:
123
139
  - Pipeline runs on every commit
124
140
  - Tests run before deployment
125
141
  - Deployments are automated
@@ -130,13 +146,13 @@ skills:
130
146
  focus: |
131
147
  Verify pipeline reliability, security, and operational readiness.
132
148
  Ensure rollback procedures work and documentation is complete.
133
- activities:
149
+ readChecklist:
134
150
  - Verify pipeline runs successfully end-to-end
135
151
  - Test rollback procedures
136
152
  - Review security configurations
137
153
  - Validate monitoring and alerts
138
154
  - Check documentation completeness
139
- ready:
155
+ confirmChecklist:
140
156
  - Pipeline is tested and reliable
141
157
  - Rollback procedure is documented and tested
142
158
  - Alerts are configured and tested
@@ -145,12 +161,12 @@ skills:
145
161
  focus: |
146
162
  Deploy pipeline and infrastructure changes to production.
147
163
  Verify operational readiness.
148
- activities:
164
+ readChecklist:
149
165
  - Deploy pipeline configuration to production
150
166
  - Verify deployment workflows work correctly
151
167
  - Confirm monitoring and alerting are operational
152
168
  - Run deployment through the new pipeline
153
- ready:
169
+ confirmChecklist:
154
170
  - Pipeline deployed and operational
155
171
  - Workflows tested in production
156
172
  - Monitoring confirms healthy operation
@@ -160,12 +176,14 @@ skills:
160
176
  url: https://developer.hashicorp.com/terraform/docs
161
177
  simpleIcon: terraform
162
178
  description: Infrastructure as code tool
163
- useWhen: Provisioning and managing cloud infrastructure
164
- - name: Docker
165
- url: https://docs.docker.com/
179
+ useWhen: Provisioning and managing cloud infrastructure as code
180
+ - name: Colima
181
+ url: https://github.com/abiosoft/colima
166
182
  simpleIcon: docker
167
- description: Container platform
168
- useWhen: Containerizing applications or managing container environments
183
+ description: Container runtime for macOS with Docker-compatible CLI
184
+ useWhen:
185
+ Running containers locally, building images, or containerizing
186
+ applications
169
187
  implementationReference: |
170
188
  ## CI/CD Pipeline Stages
171
189
 
@@ -189,13 +207,32 @@ skills:
189
207
 
190
208
  ## Infrastructure as Code
191
209
 
192
- ### Terraform
210
+ ### Terraform Workflow
211
+ ```bash
212
+ terraform init # Initialize providers and backend
213
+ terraform plan # Preview changes before applying
214
+ terraform apply # Apply changes to infrastructure
215
+ terraform destroy # Tear down infrastructure
216
+ ```
217
+
218
+ ### Terraform in CI/CD Pipelines
219
+ 1. **Plan on PR**: Run `terraform plan` on pull requests
220
+ 2. **Review output**: Require approval for destructive changes
221
+ 3. **Apply on merge**: Run `terraform apply` after merge to main
222
+ 4. **State locking**: Use remote backend with locking (S3 + DynamoDB)
223
+
224
+ ### Terraform Structure
193
225
  ```hcl
194
- # Define resources declaratively
195
- resource "aws_instance" "example" {
196
- ami = "ami-0c55b159cbfafe1f0"
197
- instance_type = "t2.micro"
226
+ # main.tf - Define resources declaratively
227
+ resource "aws_instance" "app" {
228
+ ami = var.ami_id
229
+ instance_type = var.instance_type
230
+ tags = { Environment = var.environment }
198
231
  }
232
+
233
+ # variables.tf - Parameterize for environments
234
+ variable "environment" { type = string }
235
+ variable "instance_type" { default = "t3.micro" }
199
236
  ```
200
237
 
201
238
  ### Docker
@@ -263,13 +300,13 @@ skills:
263
300
  focus: |
264
301
  Define reliability requirements and SLO targets.
265
302
  Identify critical user journeys that need protection.
266
- activities:
303
+ readChecklist:
267
304
  - Identify critical user journeys and business impact
268
305
  - Document reliability requirements (availability, latency)
269
306
  - Define SLO targets with stakeholder agreement
270
307
  - Specify acceptable error budgets
271
308
  - Mark ambiguities with [NEEDS CLARIFICATION]
272
- ready:
309
+ confirmChecklist:
273
310
  - Critical user journeys are identified
274
311
  - Reliability requirements are documented
275
312
  - SLO targets are defined
@@ -278,30 +315,47 @@ skills:
278
315
  focus: |
279
316
  Define reliability requirements, SLIs/SLOs, and observability
280
317
  strategy. Plan for resilience and capacity needs.
281
- activities:
318
+ readChecklist:
282
319
  - Define SLIs for key user journeys
283
320
  - Set SLOs with stakeholder agreement
284
321
  - Plan observability strategy (metrics, logs, traces)
285
322
  - Identify failure modes and resilience patterns
286
323
  - Define alerting thresholds
287
- ready:
324
+ confirmChecklist:
288
325
  - SLIs defined for key user journeys
289
326
  - SLOs set with stakeholder agreement
290
327
  - Monitoring strategy is planned
291
328
  - Failure modes are identified
292
329
  - Alerting thresholds are defined
330
+ onboard:
331
+ focus: |
332
+ Set up the observability and monitoring environment.
333
+ Install monitoring tools, configure dashboards, and verify
334
+ instrumentation libraries work.
335
+ readChecklist:
336
+ - Install monitoring/observability tools (Prometheus, Grafana)
337
+ - Configure tracing library (OpenTelemetry)
338
+ - Set up logging framework with structured output
339
+ - Configure dashboard templates for SLI tracking
340
+ - Verify instrumentation exports metrics correctly
341
+ confirmChecklist:
342
+ - Monitoring tools installed and accessible
343
+ - Tracing library integrated and exporting spans
344
+ - Logging outputs structured data
345
+ - Dashboard templates render correctly
346
+ - Instrumentation verified with test traffic
293
347
  code:
294
348
  focus: |
295
349
  Implement observability, resilience patterns, and operational
296
350
  tooling. Build systems that fail gracefully and recover quickly.
297
- activities:
351
+ readChecklist:
298
352
  - Implement metrics, logging, and tracing
299
353
  - Configure alerts based on SLOs
300
354
  - Implement resilience patterns (timeouts, retries, circuit
301
355
  breakers)
302
356
  - Create runbooks for common issues
303
357
  - Set up error budget tracking
304
- ready:
358
+ confirmChecklist:
305
359
  - Comprehensive monitoring is in place
306
360
  - Alerts are actionable and low-noise
307
361
  - Resilience patterns are implemented
@@ -311,13 +365,13 @@ skills:
311
365
  focus: |
312
366
  Verify reliability implementation meets SLOs and operational
313
367
  readiness. Ensure incident response procedures are in place.
314
- activities:
368
+ readChecklist:
315
369
  - Validate SLOs are measurable
316
370
  - Test failure scenarios
317
371
  - Review runbook completeness
318
372
  - Verify incident response procedures
319
373
  - Check alert quality and coverage
320
- ready:
374
+ confirmChecklist:
321
375
  - SLOs are measurable and validated
322
376
  - Failure scenarios are tested
323
377
  - Incident response process documented
@@ -327,12 +381,12 @@ skills:
327
381
  focus: |
328
382
  Deploy reliability infrastructure and verify production
329
383
  monitoring. Ensure on-call readiness.
330
- activities:
384
+ readChecklist:
331
385
  - Deploy monitoring and alerting to production
332
386
  - Verify dashboards and alerts work correctly
333
387
  - Confirm on-call rotation is ready
334
388
  - Run production readiness review
335
- ready:
389
+ confirmChecklist:
336
390
  - Monitoring is live in production
337
391
  - Alerts fire correctly for SLO breaches
338
392
  - On-call team is trained and ready