@kl-c/matrixos 0.3.39 → 0.3.41

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 (50) hide show
  1. package/dist/cli/index.js +69 -2
  2. package/dist/cli/skills/api-and-interface-design/SKILL.md +298 -0
  3. package/dist/cli/skills/browser-testing-with-devtools/SKILL.md +321 -0
  4. package/dist/cli/skills/ci-cd-and-automation/SKILL.md +394 -0
  5. package/dist/cli/skills/context-engineering/SKILL.md +293 -0
  6. package/dist/cli/skills/deprecation-and-migration/SKILL.md +251 -0
  7. package/dist/cli/skills/documentation-and-adrs/SKILL.md +292 -0
  8. package/dist/cli/skills/doubt-driven-development/SKILL.md +247 -0
  9. package/dist/cli/skills/incremental-implementation/SKILL.md +253 -0
  10. package/dist/cli/skills/interview-me/SKILL.md +229 -0
  11. package/dist/cli/skills/observability-and-instrumentation/SKILL.md +207 -0
  12. package/dist/cli/skills/performance-optimization/SKILL.md +354 -0
  13. package/dist/cli/skills/security-and-hardening/SKILL.md +471 -0
  14. package/dist/cli/skills/shipping-and-launch/SKILL.md +314 -0
  15. package/dist/cli/skills/source-driven-development/SKILL.md +198 -0
  16. package/dist/cli/skills/test-driven-development/SKILL.md +402 -0
  17. package/dist/cli-node/index.js +69 -2
  18. package/dist/index.js +68 -1
  19. package/dist/skills/api-and-interface-design/SKILL.md +298 -0
  20. package/dist/skills/browser-testing-with-devtools/SKILL.md +321 -0
  21. package/dist/skills/ci-cd-and-automation/SKILL.md +394 -0
  22. package/dist/skills/context-engineering/SKILL.md +293 -0
  23. package/dist/skills/deprecation-and-migration/SKILL.md +251 -0
  24. package/dist/skills/documentation-and-adrs/SKILL.md +292 -0
  25. package/dist/skills/doubt-driven-development/SKILL.md +247 -0
  26. package/dist/skills/incremental-implementation/SKILL.md +253 -0
  27. package/dist/skills/interview-me/SKILL.md +229 -0
  28. package/dist/skills/observability-and-instrumentation/SKILL.md +207 -0
  29. package/dist/skills/performance-optimization/SKILL.md +354 -0
  30. package/dist/skills/security-and-hardening/SKILL.md +471 -0
  31. package/dist/skills/shipping-and-launch/SKILL.md +314 -0
  32. package/dist/skills/source-driven-development/SKILL.md +198 -0
  33. package/dist/skills/test-driven-development/SKILL.md +402 -0
  34. package/dist/tui.js +68 -1
  35. package/package.json +1 -1
  36. package/packages/shared-skills/skills/api-and-interface-design/SKILL.md +298 -0
  37. package/packages/shared-skills/skills/browser-testing-with-devtools/SKILL.md +321 -0
  38. package/packages/shared-skills/skills/ci-cd-and-automation/SKILL.md +394 -0
  39. package/packages/shared-skills/skills/context-engineering/SKILL.md +293 -0
  40. package/packages/shared-skills/skills/deprecation-and-migration/SKILL.md +251 -0
  41. package/packages/shared-skills/skills/documentation-and-adrs/SKILL.md +292 -0
  42. package/packages/shared-skills/skills/doubt-driven-development/SKILL.md +247 -0
  43. package/packages/shared-skills/skills/incremental-implementation/SKILL.md +253 -0
  44. package/packages/shared-skills/skills/interview-me/SKILL.md +229 -0
  45. package/packages/shared-skills/skills/observability-and-instrumentation/SKILL.md +207 -0
  46. package/packages/shared-skills/skills/performance-optimization/SKILL.md +354 -0
  47. package/packages/shared-skills/skills/security-and-hardening/SKILL.md +471 -0
  48. package/packages/shared-skills/skills/shipping-and-launch/SKILL.md +314 -0
  49. package/packages/shared-skills/skills/source-driven-development/SKILL.md +198 -0
  50. package/packages/shared-skills/skills/test-driven-development/SKILL.md +402 -0
@@ -0,0 +1,314 @@
1
+ ---
2
+ name: shipping-and-launch
3
+ description: Prepares production launches. Use when preparing to deploy to production. Use when you need a pre-launch checklist, when setting up monitoring, when planning a staged rollout, or when you need a rollback strategy.
4
+ source: addyosmani/agent-skills (MIT)
5
+ ---
6
+
7
+ # Shipping and Launch
8
+
9
+ ## Overview
10
+
11
+ Ship with confidence. The goal is not just to deploy — it's to deploy safely, with monitoring in place, a rollback plan ready, and a clear understanding of what success looks like. Every launch should be reversible, observable, and incremental.
12
+
13
+ ## When to Use
14
+
15
+ - Deploying a feature to production for the first time
16
+ - Releasing a significant change to users
17
+ - Migrating data or infrastructure
18
+ - Opening a beta or early access program
19
+ - Any deployment that carries risk (all of them)
20
+
21
+ ## The Pre-Launch Checklist
22
+
23
+ ### Code Quality
24
+
25
+ - [ ] All tests pass (unit, integration, e2e)
26
+ - [ ] Build succeeds with no warnings
27
+ - [ ] Lint and type checking pass
28
+ - [ ] Code reviewed and approved
29
+ - [ ] No TODO comments that should be resolved before launch
30
+ - [ ] No `console.log` debugging statements in production code
31
+ - [ ] Error handling covers expected failure modes
32
+
33
+ ### Security
34
+
35
+ - [ ] No secrets in code or version control
36
+ - [ ] `npm audit` shows no critical or high vulnerabilities
37
+ - [ ] Input validation on all user-facing endpoints
38
+ - [ ] Authentication and authorization checks in place
39
+ - [ ] Security headers configured (CSP, HSTS, etc.)
40
+ - [ ] Rate limiting on authentication endpoints
41
+ - [ ] CORS configured to specific origins (not wildcard)
42
+
43
+ ### Performance
44
+
45
+ - [ ] Core Web Vitals within "Good" thresholds
46
+ - [ ] No N+1 queries in critical paths
47
+ - [ ] Images optimized (compression, responsive sizes, lazy loading)
48
+ - [ ] Bundle size within budget
49
+ - [ ] Database queries have appropriate indexes
50
+ - [ ] Caching configured for static assets and repeated queries
51
+
52
+ ### Accessibility
53
+
54
+ - [ ] Keyboard navigation works for all interactive elements
55
+ - [ ] Screen reader can convey page content and structure
56
+ - [ ] Color contrast meets WCAG 2.1 AA (4.5:1 for text)
57
+ - [ ] Focus management correct for modals and dynamic content
58
+ - [ ] Error messages are descriptive and associated with form fields
59
+ - [ ] No accessibility warnings in axe-core or Lighthouse
60
+
61
+ ### Infrastructure
62
+
63
+ - [ ] Environment variables set in production
64
+ - [ ] Database migrations applied (or ready to apply)
65
+ - [ ] DNS and SSL configured
66
+ - [ ] CDN configured for static assets
67
+ - [ ] Logging and error reporting configured
68
+ - [ ] Health check endpoint exists and responds
69
+
70
+ ### Documentation
71
+
72
+ - [ ] README updated with any new setup requirements
73
+ - [ ] API documentation current
74
+ - [ ] ADRs written for any architectural decisions
75
+ - [ ] Changelog updated
76
+ - [ ] User-facing documentation updated (if applicable)
77
+
78
+ ## Feature Flag Strategy
79
+
80
+ Ship behind feature flags to decouple deployment from release:
81
+
82
+ ```typescript
83
+ // Feature flag check
84
+ const flags = await getFeatureFlags(userId);
85
+
86
+ if (flags.taskSharing) {
87
+ // New feature: task sharing
88
+ return <TaskSharingPanel task={task} />;
89
+ }
90
+
91
+ // Default: existing behavior
92
+ return null;
93
+ ```
94
+
95
+ **Feature flag lifecycle:**
96
+
97
+ ```
98
+ 1. DEPLOY with flag OFF → Code is in production but inactive
99
+ 2. ENABLE for team/beta → Internal testing in production environment
100
+ 3. GRADUAL ROLLOUT → 5% → 25% → 50% → 100% of users
101
+ 4. MONITOR at each stage → Watch error rates, performance, user feedback
102
+ 5. CLEAN UP → Remove flag and dead code path after full rollout
103
+ ```
104
+
105
+ **Rules:**
106
+ - Every feature flag has an owner and an expiration date
107
+ - Clean up flags within 2 weeks of full rollout
108
+ - Don't nest feature flags (creates exponential combinations)
109
+ - Test both flag states (on and off) in CI
110
+
111
+ ## Staged Rollout
112
+
113
+ ### The Rollout Sequence
114
+
115
+ ```
116
+ 1. DEPLOY to staging
117
+ └── Full test suite in staging environment
118
+ └── Manual smoke test of critical flows
119
+
120
+ 2. DEPLOY to production (feature flag OFF)
121
+ └── Verify deployment succeeded (health check)
122
+ └── Check error monitoring (no new errors)
123
+
124
+ 3. ENABLE for team (flag ON for internal users)
125
+ └── Team uses the feature in production
126
+ └── 24-hour monitoring window
127
+
128
+ 4. CANARY rollout (flag ON for 5% of users)
129
+ └── Monitor error rates, latency, user behavior
130
+ └── Compare metrics: canary vs. baseline
131
+ └── 24-48 hour monitoring window
132
+ └── Advance only if all thresholds pass (see table below)
133
+
134
+ 5. GRADUAL increase (25% -> 50% -> 100%)
135
+ └── Same monitoring at each step
136
+ └── Ability to roll back to previous percentage at any point
137
+
138
+ 6. FULL rollout (flag ON for all users)
139
+ └── Monitor for 1 week
140
+ └── Clean up feature flag
141
+ ```
142
+
143
+ ### Rollout Decision Thresholds
144
+
145
+ Use these thresholds to decide whether to advance, hold, or roll back at each stage:
146
+
147
+ | Metric | Advance (green) | Hold and investigate (yellow) | Roll back (red) |
148
+ |--------|-----------------|-------------------------------|-----------------|
149
+ | Error rate | Within 10% of baseline | 10-100% above baseline | >2x baseline |
150
+ | P95 latency | Within 20% of baseline | 20-50% above baseline | >50% above baseline |
151
+ | Client JS errors | No new error types | New errors at <0.1% of sessions | New errors at >0.1% of sessions |
152
+ | Business metrics | Neutral or positive | Decline <5% (may be noise) | Decline >5% |
153
+
154
+ ### When to Roll Back
155
+
156
+ Roll back immediately if:
157
+ - Error rate increases by more than 2x baseline
158
+ - P95 latency increases by more than 50%
159
+ - User-reported issues spike
160
+ - Data integrity issues detected
161
+ - Security vulnerability discovered
162
+
163
+ ## Monitoring and Observability
164
+
165
+ ### What to Monitor
166
+
167
+ ```
168
+ Application metrics:
169
+ ├── Error rate (total and by endpoint)
170
+ ├── Response time (p50, p95, p99)
171
+ ├── Request volume
172
+ ├── Active users
173
+ └── Key business metrics (conversion, engagement)
174
+
175
+ Infrastructure metrics:
176
+ ├── CPU and memory utilization
177
+ ├── Database connection pool usage
178
+ ├── Disk space
179
+ ├── Network latency
180
+ └── Queue depth (if applicable)
181
+
182
+ Client metrics:
183
+ ├── Core Web Vitals (LCP, INP, CLS)
184
+ ├── JavaScript errors
185
+ ├── API error rates from client perspective
186
+ └── Page load time
187
+ ```
188
+
189
+ ### Error Reporting
190
+
191
+ ```typescript
192
+ // Set up error boundary with reporting
193
+ class ErrorBoundary extends React.Component {
194
+ componentDidCatch(error: Error, info: React.ErrorInfo) {
195
+ // Report to error tracking service
196
+ reportError(error, {
197
+ componentStack: info.componentStack,
198
+ userId: getCurrentUser()?.id,
199
+ page: window.location.pathname,
200
+ });
201
+ }
202
+
203
+ render() {
204
+ if (this.state.hasError) {
205
+ return <ErrorFallback onRetry={() => this.setState({ hasError: false })} />;
206
+ }
207
+ return this.props.children;
208
+ }
209
+ }
210
+
211
+ // Server-side error reporting
212
+ app.use((err: Error, req: Request, res: Response, next: NextFunction) => {
213
+ reportError(err, {
214
+ method: req.method,
215
+ url: req.url,
216
+ userId: req.user?.id,
217
+ });
218
+
219
+ // Don't expose internals to users
220
+ res.status(500).json({
221
+ error: { code: 'INTERNAL_ERROR', message: 'Something went wrong' },
222
+ });
223
+ });
224
+ ```
225
+
226
+ ### Post-Launch Verification
227
+
228
+ In the first hour after launch:
229
+
230
+ ```
231
+ 1. Check health endpoint returns 200
232
+ 2. Check error monitoring dashboard (no new error types)
233
+ 3. Check latency dashboard (no regression)
234
+ 4. Test the critical user flow manually
235
+ 5. Verify logs are flowing and readable
236
+ 6. Confirm rollback mechanism works (dry run if possible)
237
+ ```
238
+
239
+ ## Rollback Strategy
240
+
241
+ Every deployment needs a rollback plan before it happens:
242
+
243
+ ```markdown
244
+ ## Rollback Plan for [Feature/Release]
245
+
246
+ ### Trigger Conditions
247
+ - Error rate > 2x baseline
248
+ - P95 latency > [X]ms
249
+ - User reports of [specific issue]
250
+
251
+ ### Rollback Steps
252
+ 1. Disable feature flag (if applicable)
253
+ OR
254
+ 1. Deploy previous version: `git revert <commit> && git push`
255
+ 2. Verify rollback: health check, error monitoring
256
+ 3. Communicate: notify team of rollback
257
+
258
+ ### Database Considerations
259
+ - Migration [X] has a rollback: `npx prisma migrate rollback`
260
+ - Data inserted by new feature: [preserved / cleaned up]
261
+
262
+ ### Time to Rollback
263
+ - Feature flag: < 1 minute
264
+ - Redeploy previous version: < 5 minutes
265
+ - Database rollback: < 15 minutes
266
+ ```
267
+ ## See Also
268
+
269
+ - For the project-wide Definition of Done that every change must clear before this checklist, see `references/definition-of-done.md`
270
+ - For security pre-launch checks, see `references/security-checklist.md`
271
+ - For performance pre-launch checklist, see `references/performance-checklist.md`
272
+ - For accessibility verification before launch, see `references/accessibility-checklist.md`
273
+
274
+ ## Common Rationalizations
275
+
276
+ | Rationalization | Reality |
277
+ |---|---|
278
+ | "It works in staging, it'll work in production" | Production has different data, traffic patterns, and edge cases. Monitor after deploy. |
279
+ | "We don't need feature flags for this" | Every feature benefits from a kill switch. Even "simple" changes can break things. |
280
+ | "Monitoring is overhead" | Not having monitoring means you discover problems from user complaints instead of dashboards. |
281
+ | "We'll add monitoring later" | Add it before launch. You can't debug what you can't see. |
282
+ | "Rolling back is admitting failure" | Rolling back is responsible engineering. Shipping a broken feature is the failure. |
283
+
284
+ ## Red Flags
285
+
286
+ - Deploying without a rollback plan
287
+ - No monitoring or error reporting in production
288
+ - Big-bang releases (everything at once, no staging)
289
+ - Feature flags with no expiration or owner
290
+ - No one monitoring the deploy for the first hour
291
+ - Production environment configuration done by memory, not code
292
+ - "It's Friday afternoon, let's ship it"
293
+
294
+ ## Verification
295
+
296
+ Before deploying:
297
+
298
+ - [ ] Pre-launch checklist completed (all sections green)
299
+ - [ ] Feature flag configured (if applicable)
300
+ - [ ] Rollback plan documented
301
+ - [ ] Monitoring dashboards set up
302
+ - [ ] Team notified of deployment
303
+
304
+ After deploying:
305
+
306
+ - [ ] Health check returns 200
307
+ - [ ] Error rate is normal
308
+ - [ ] Latency is normal
309
+ - [ ] Critical user flow works
310
+ - [ ] Logs are flowing
311
+ - [ ] Rollback tested or verified ready
312
+
313
+ ---
314
+ *Source: addyosmani/agent-skills (MIT). Ported into MaTrixOS shared-skills bundle.*
@@ -0,0 +1,198 @@
1
+ ---
2
+ name: source-driven-development
3
+ description: Grounds every implementation decision in official documentation. Use when you want authoritative, source-cited code free from outdated patterns. Use when building with any framework or library where correctness matters.
4
+ source: addyosmani/agent-skills (MIT)
5
+ ---
6
+
7
+ # Source-Driven Development
8
+
9
+ ## Overview
10
+
11
+ Every framework-specific code decision must be backed by official documentation. Don't implement from memory — verify, cite, and let the user see your sources. Training data goes stale, APIs get deprecated, best practices evolve. This skill ensures the user gets code they can trust because every pattern traces back to an authoritative source they can check.
12
+
13
+ ## When to Use
14
+
15
+ - The user wants code that follows current best practices for a given framework
16
+ - Building boilerplate, starter code, or patterns that will be copied across a project
17
+ - The user explicitly asks for documented, verified, or "correct" implementation
18
+ - Implementing features where the framework's recommended approach matters (forms, routing, data fetching, state management, auth)
19
+ - Reviewing or improving code that uses framework-specific patterns
20
+ - Any time you are about to write framework-specific code from memory
21
+
22
+ **When NOT to use:**
23
+
24
+ - Correctness does not depend on a specific version (renaming variables, fixing typos, moving files)
25
+ - Pure logic that works the same across all versions (loops, conditionals, data structures)
26
+ - The user explicitly wants speed over verification ("just do it quickly")
27
+
28
+ ## The Process
29
+
30
+ ```
31
+ DETECT ──→ FETCH ──→ IMPLEMENT ──→ CITE
32
+ │ │ │ │
33
+ ▼ ▼ ▼ ▼
34
+ What Get the Follow the Show your
35
+ stack? relevant documented sources
36
+ docs patterns
37
+ ```
38
+
39
+ ### Step 1: Detect Stack and Versions
40
+
41
+ Read the project's dependency file to identify exact versions:
42
+
43
+ ```
44
+ package.json → Node/React/Vue/Angular/Svelte
45
+ composer.json → PHP/Symfony/Laravel
46
+ requirements.txt / pyproject.toml → Python/Django/Flask
47
+ go.mod → Go
48
+ Cargo.toml → Rust
49
+ Gemfile → Ruby/Rails
50
+ ```
51
+
52
+ State what you found explicitly:
53
+
54
+ ```
55
+ STACK DETECTED:
56
+ - React 19.1.0 (from package.json)
57
+ - Vite 6.2.0
58
+ - Tailwind CSS 4.0.3
59
+ → Fetching official docs for the relevant patterns.
60
+ ```
61
+
62
+ If versions are missing or ambiguous, **ask the user**. Don't guess — the version determines which patterns are correct.
63
+
64
+ ### Step 2: Fetch Official Documentation
65
+
66
+ Fetch the specific documentation page for the feature you're implementing. Not the homepage, not the full docs — the relevant page.
67
+
68
+ **Source hierarchy (in order of authority):**
69
+
70
+ | Priority | Source | Example |
71
+ |----------|--------|---------|
72
+ | 1 | Official documentation | react.dev, docs.djangoproject.com, symfony.com/doc |
73
+ | 2 | Official blog / changelog | react.dev/blog, nextjs.org/blog |
74
+ | 3 | Web standards references | MDN, web.dev, html.spec.whatwg.org |
75
+ | 4 | Browser/runtime compatibility | caniuse.com, node.green |
76
+
77
+ **Not authoritative — never cite as primary sources:**
78
+
79
+ - Stack Overflow answers
80
+ - Blog posts or tutorials (even popular ones)
81
+ - AI-generated documentation or summaries
82
+ - Your own training data (that is the whole point — verify it)
83
+
84
+ **Be precise with what you fetch:**
85
+
86
+ ```
87
+ BAD: Fetch the React homepage
88
+ GOOD: Fetch react.dev/reference/react/useActionState
89
+
90
+ BAD: Search "django authentication best practices"
91
+ GOOD: Fetch docs.djangoproject.com/en/6.0/topics/auth/
92
+ ```
93
+
94
+ After fetching, extract the key patterns and note any deprecation warnings or migration guidance.
95
+
96
+ When official sources conflict with each other (e.g. a migration guide contradicts the API reference), surface the discrepancy to the user and verify which pattern actually works against the detected version.
97
+
98
+ ### Step 3: Implement Following Documented Patterns
99
+
100
+ Write code that matches what the documentation shows:
101
+
102
+ - Use the API signatures from the docs, not from memory
103
+ - If the docs show a new way to do something, use the new way
104
+ - If the docs deprecate a pattern, don't use the deprecated version
105
+ - If the docs don't cover something, flag it as unverified
106
+
107
+ **When docs conflict with existing project code:**
108
+
109
+ ```
110
+ CONFLICT DETECTED:
111
+ The existing codebase uses useState for form loading state,
112
+ but React 19 docs recommend useActionState for this pattern.
113
+ (Source: react.dev/reference/react/useActionState)
114
+
115
+ Options:
116
+ A) Use the modern pattern (useActionState) — consistent with current docs
117
+ B) Match existing code (useState) — consistent with codebase
118
+ → Which approach do you prefer?
119
+ ```
120
+
121
+ Surface the conflict. Don't silently pick one.
122
+
123
+ ### Step 4: Cite Your Sources
124
+
125
+ Every framework-specific pattern gets a citation. The user must be able to verify every decision.
126
+
127
+ **In code comments:**
128
+
129
+ ```typescript
130
+ // React 19 form handling with useActionState
131
+ // Source: https://react.dev/reference/react/useActionState#usage
132
+ const [state, formAction, isPending] = useActionState(submitOrder, initialState);
133
+ ```
134
+
135
+ **In conversation:**
136
+
137
+ ```
138
+ I'm using useActionState instead of manual useState for the
139
+ form submission state. React 19 replaced the manual
140
+ isPending/setIsPending pattern with this hook.
141
+
142
+ Source: https://react.dev/blog/2024/12/05/react-19#actions
143
+ "useTransition now supports async functions [...] to handle
144
+ pending states automatically"
145
+ ```
146
+
147
+ **Citation rules:**
148
+
149
+ - Full URLs, not shortened
150
+ - Prefer deep links with anchors where possible (e.g. `/useActionState#usage` over `/useActionState`) — anchors survive doc restructuring better than top-level pages
151
+ - Quote the relevant passage when it supports a non-obvious decision
152
+ - Include browser/runtime support data when recommending platform features
153
+ - If you cannot find documentation for a pattern, say so explicitly:
154
+
155
+ ```
156
+ UNVERIFIED: I could not find official documentation for this
157
+ pattern. This is based on training data and may be outdated.
158
+ Verify before using in production.
159
+ ```
160
+
161
+ Honesty about what you couldn't verify is more valuable than false confidence.
162
+
163
+ ## Common Rationalizations
164
+
165
+ | Rationalization | Reality |
166
+ |---|---|
167
+ | "I'm confident about this API" | Confidence is not evidence. Training data contains outdated patterns that look correct but break against current versions. Verify. |
168
+ | "Fetching docs wastes tokens" | Hallucinating an API wastes more. The user debugs for an hour, then discovers the function signature changed. One fetch prevents hours of rework. |
169
+ | "The docs won't have what I need" | If the docs don't cover it, that's valuable information — the pattern may not be officially recommended. |
170
+ | "I'll just mention it might be outdated" | A disclaimer doesn't help. Either verify and cite, or clearly flag it as unverified. Hedging is the worst option. |
171
+ | "This is a simple task, no need to check" | Simple tasks with wrong patterns become templates. The user copies your deprecated form handler into ten components before discovering the modern approach exists. |
172
+
173
+ ## Red Flags
174
+
175
+ - Writing framework-specific code without checking the docs for that version
176
+ - Using "I believe" or "I think" about an API instead of citing the source
177
+ - Implementing a pattern without knowing which version it applies to
178
+ - Citing Stack Overflow or blog posts instead of official documentation
179
+ - Using deprecated APIs because they appear in training data
180
+ - Not reading `package.json` / dependency files before implementing
181
+ - Delivering code without source citations for framework-specific decisions
182
+ - Fetching an entire docs site when only one page is relevant
183
+
184
+ ## Verification
185
+
186
+ After implementing with source-driven development:
187
+
188
+ - [ ] Framework and library versions were identified from the dependency file
189
+ - [ ] Official documentation was fetched for framework-specific patterns
190
+ - [ ] All sources are official documentation, not blog posts or training data
191
+ - [ ] Code follows the patterns shown in the current version's documentation
192
+ - [ ] Non-trivial decisions include source citations with full URLs
193
+ - [ ] No deprecated APIs are used (checked against migration guides)
194
+ - [ ] Conflicts between docs and existing code were surfaced to the user
195
+ - [ ] Anything that could not be verified is explicitly flagged as unverified
196
+
197
+ ---
198
+ *Source: addyosmani/agent-skills (MIT). Ported into MaTrixOS shared-skills bundle.*