@forwardimpact/pathway 0.1.0 → 0.2.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/app/commands/agent.js +109 -21
- package/app/commands/command-factory.js +3 -3
- package/app/commands/interview.js +14 -7
- package/app/commands/job.js +43 -29
- package/app/commands/progress.js +14 -7
- package/app/commands/serve.js +5 -0
- package/app/commands/stage.js +0 -10
- package/app/commands/track.js +5 -8
- package/app/components/builder.js +111 -27
- package/app/css/components/surfaces.css +16 -0
- package/app/formatters/agent/profile.js +113 -87
- package/app/formatters/agent/skill.js +64 -31
- package/app/formatters/behaviour/dom.js +3 -0
- package/app/formatters/behaviour/microdata.js +106 -0
- package/app/formatters/discipline/dom.js +28 -1
- package/app/formatters/discipline/microdata.js +117 -0
- package/app/formatters/discipline/shared.js +49 -8
- package/app/formatters/driver/dom.js +3 -0
- package/app/formatters/driver/microdata.js +91 -0
- package/app/formatters/grade/dom.js +3 -0
- package/app/formatters/grade/microdata.js +151 -0
- package/app/formatters/index.js +32 -1
- package/app/formatters/interview/shared.js +13 -8
- package/app/formatters/job/description.js +5 -3
- package/app/formatters/json-ld.js +242 -0
- package/app/formatters/microdata-shared.js +184 -0
- package/app/formatters/progress/shared.js +14 -11
- package/app/formatters/skill/dom.js +3 -0
- package/app/formatters/skill/microdata.js +151 -0
- package/app/formatters/stage/dom.js +3 -18
- package/app/formatters/stage/microdata.js +110 -0
- package/app/formatters/stage/shared.js +0 -27
- package/app/formatters/track/dom.js +5 -30
- package/app/formatters/track/markdown.js +2 -25
- package/app/formatters/track/microdata.js +111 -0
- package/app/formatters/track/shared.js +6 -58
- package/app/handout-main.js +26 -12
- package/app/index.html +11 -0
- package/app/lib/card-mappers.js +17 -12
- package/app/lib/job-cache.js +12 -9
- package/app/lib/template-loader.js +66 -0
- package/app/lib/yaml-loader.js +25 -8
- package/app/main.js +8 -4
- package/app/model/agent.js +158 -130
- package/app/model/checklist.js +57 -91
- package/app/model/derivation.js +135 -68
- package/app/model/index-generator.js +1 -7
- package/app/model/job.js +19 -13
- package/app/model/levels.js +20 -12
- package/app/model/loader.js +41 -17
- package/app/model/matching.js +33 -3
- package/app/model/profile.js +38 -45
- package/app/model/schema-validation.js +438 -0
- package/app/model/validation.js +747 -68
- package/app/pages/agent-builder.js +119 -25
- package/app/pages/assessment-results.js +10 -4
- package/app/pages/discipline.js +36 -6
- package/app/pages/driver.js +9 -47
- package/app/pages/interview-builder.js +3 -1
- package/app/pages/interview.js +15 -4
- package/app/pages/job-builder.js +4 -1
- package/app/pages/job.js +15 -4
- package/app/pages/landing.js +10 -10
- package/app/pages/progress-builder.js +3 -1
- package/app/pages/progress.js +72 -21
- package/app/pages/stage.js +3 -126
- package/app/slide-main.js +45 -17
- package/app/slides/index.js +3 -1
- package/app/slides/overview.js +40 -4
- package/app/slides/progress.js +4 -2
- package/bin/pathway.js +18 -64
- package/examples/agents/.claude/skills/architecture-design/SKILL.md +58 -16
- package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +59 -18
- package/examples/agents/.claude/skills/code-quality-review/SKILL.md +58 -17
- package/examples/agents/.claude/skills/devops-cicd/SKILL.md +64 -18
- package/examples/agents/.claude/skills/full-stack-development/SKILL.md +59 -15
- package/examples/agents/.claude/skills/sre-practices/SKILL.md +64 -18
- package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +58 -17
- package/examples/agents/.github/agents/se-platform-code.agent.md +39 -88
- package/examples/agents/.github/agents/se-platform-plan.agent.md +41 -88
- package/examples/agents/.github/agents/se-platform-review.agent.md +38 -15
- package/examples/agents/.vscode/settings.json +1 -1
- package/examples/behaviours/outcome_ownership.yaml +1 -2
- package/examples/behaviours/polymathic_knowledge.yaml +1 -2
- package/examples/behaviours/precise_communication.yaml +1 -2
- package/examples/behaviours/relentless_curiosity.yaml +1 -2
- package/examples/behaviours/systems_thinking.yaml +1 -2
- package/examples/capabilities/business.yaml +80 -142
- package/examples/capabilities/delivery.yaml +155 -219
- package/examples/capabilities/people.yaml +2 -34
- package/examples/capabilities/reliability.yaml +161 -80
- package/examples/capabilities/scale.yaml +234 -252
- package/examples/copilot-setup-steps.yaml +25 -0
- package/examples/devcontainer.yaml +21 -0
- package/examples/disciplines/_index.yaml +1 -0
- package/examples/disciplines/data_engineering.yaml +14 -12
- package/examples/disciplines/engineering_management.yaml +63 -0
- package/examples/disciplines/software_engineering.yaml +14 -12
- package/examples/drivers.yaml +1 -4
- package/examples/framework.yaml +1 -2
- package/examples/grades.yaml +1 -3
- package/examples/questions/behaviours/outcome_ownership.yaml +1 -2
- package/examples/questions/behaviours/polymathic_knowledge.yaml +1 -2
- package/examples/questions/behaviours/precise_communication.yaml +1 -2
- package/examples/questions/behaviours/relentless_curiosity.yaml +1 -2
- package/examples/questions/behaviours/systems_thinking.yaml +1 -2
- package/examples/questions/skills/architecture_design.yaml +1 -2
- package/examples/questions/skills/cloud_platforms.yaml +1 -2
- package/examples/questions/skills/code_quality.yaml +1 -2
- package/examples/questions/skills/data_modeling.yaml +1 -2
- package/examples/questions/skills/devops.yaml +1 -2
- package/examples/questions/skills/full_stack_development.yaml +1 -2
- package/examples/questions/skills/sre_practices.yaml +1 -2
- package/examples/questions/skills/stakeholder_management.yaml +1 -2
- package/examples/questions/skills/team_collaboration.yaml +1 -2
- package/examples/questions/skills/technical_writing.yaml +1 -2
- package/examples/self-assessments.yaml +1 -3
- package/examples/stages.yaml +101 -46
- package/examples/tracks/_index.yaml +0 -1
- package/examples/tracks/platform.yaml +8 -13
- package/examples/tracks/sre.yaml +8 -18
- package/examples/vscode-settings.yaml +2 -7
- package/package.json +9 -3
- package/templates/agent.template.md +65 -0
- package/templates/skill.template.md +28 -0
- package/examples/agents/.claude/skills/data-modeling/SKILL.md +0 -99
- package/examples/agents/.claude/skills/developer-experience/SKILL.md +0 -99
- package/examples/agents/.claude/skills/knowledge-management/SKILL.md +0 -100
- package/examples/agents/.claude/skills/pattern-generalization/SKILL.md +0 -102
- package/examples/agents/.claude/skills/technical-writing/SKILL.md +0 -129
- package/examples/tracks/manager.yaml +0 -53
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
---
|
|
2
|
+
|
|
3
|
+
{{#name}}name: {{name}} {{/name}}description: {{{description}}} {{#infer}}infer:
|
|
4
|
+
{{infer}} {{/infer}}{{#handoffs.length}}handoffs: {{#handoffs}} - label:
|
|
5
|
+
{{label}} {{#agent}} agent: {{agent}} {{/agent}} prompt: "{{{prompt}}}"
|
|
6
|
+
{{#send}} send: {{send}} {{/send}}{{/handoffs}}{{/handoffs.length}}---
|
|
7
|
+
|
|
8
|
+
# {{title}}
|
|
9
|
+
|
|
10
|
+
{{{stageDescription}}}
|
|
11
|
+
|
|
12
|
+
## Core Identity
|
|
13
|
+
|
|
14
|
+
{{{identity}}}
|
|
15
|
+
|
|
16
|
+
{{#priority}} {{{priority}}}
|
|
17
|
+
|
|
18
|
+
{{/priority}} {{#capabilities.length}} Your primary capabilities:
|
|
19
|
+
{{#capabilities}}
|
|
20
|
+
|
|
21
|
+
- {{{.}}} {{/capabilities}}
|
|
22
|
+
|
|
23
|
+
{{/capabilities.length}} {{#beforeMakingChanges.length}} Before making changes:
|
|
24
|
+
{{#beforeMakingChanges}} {{index}}. {{{text}}} {{/beforeMakingChanges}}
|
|
25
|
+
|
|
26
|
+
{{/beforeMakingChanges.length}} {{#delegation}}
|
|
27
|
+
|
|
28
|
+
## Delegation
|
|
29
|
+
|
|
30
|
+
{{{delegation}}}
|
|
31
|
+
|
|
32
|
+
{{/delegation}}
|
|
33
|
+
|
|
34
|
+
## Operational Context
|
|
35
|
+
|
|
36
|
+
{{{operationalContext}}}
|
|
37
|
+
|
|
38
|
+
{{{workingStyle}}} {{#beforeHandoff}}
|
|
39
|
+
|
|
40
|
+
## Before Handoff
|
|
41
|
+
|
|
42
|
+
Before offering a handoff, verify and summarize completion of these items:
|
|
43
|
+
|
|
44
|
+
{{{beforeHandoff}}}
|
|
45
|
+
|
|
46
|
+
When verified, summarize what was accomplished then offer the handoff. If items
|
|
47
|
+
are incomplete, explain what remains.
|
|
48
|
+
|
|
49
|
+
{{/beforeHandoff}}
|
|
50
|
+
|
|
51
|
+
## Return Format
|
|
52
|
+
|
|
53
|
+
When completing work (for handoff or as a subagent), provide:
|
|
54
|
+
|
|
55
|
+
1. **Work completed**: What was accomplished
|
|
56
|
+
2. **Checklist status**: Items verified from Before Handoff section
|
|
57
|
+
3. **Recommendation**: Ready for next stage, or needs more work
|
|
58
|
+
|
|
59
|
+
{{#constraints.length}}
|
|
60
|
+
|
|
61
|
+
## Constraints
|
|
62
|
+
|
|
63
|
+
{{#constraints}}
|
|
64
|
+
|
|
65
|
+
- {{{.}}} {{/constraints}} {{/constraints.length}}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
|
|
3
|
+
name: {{name}} description: | {{#descriptionLines}} {{{.}}}
|
|
4
|
+
{{/descriptionLines}}---
|
|
5
|
+
|
|
6
|
+
# {{{title}}}
|
|
7
|
+
|
|
8
|
+
## Stage Guidance
|
|
9
|
+
|
|
10
|
+
{{#stages}}
|
|
11
|
+
|
|
12
|
+
### {{stageName}} Stage
|
|
13
|
+
|
|
14
|
+
**Focus:** {{{focus}}}
|
|
15
|
+
|
|
16
|
+
**Activities:** {{#activities}}
|
|
17
|
+
|
|
18
|
+
- {{{.}}} {{/activities}}
|
|
19
|
+
|
|
20
|
+
**Ready for {{nextStageName}} when:** {{#ready}}
|
|
21
|
+
|
|
22
|
+
- [ ] {{{.}}} {{/ready}}
|
|
23
|
+
|
|
24
|
+
{{/stages}} {{#reference}}
|
|
25
|
+
|
|
26
|
+
## Reference
|
|
27
|
+
|
|
28
|
+
{{{reference}}} {{/reference}}
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: data-modeling
|
|
3
|
-
description: |
|
|
4
|
-
Guide for designing database schemas, data structures, and data
|
|
5
|
-
architectures. Use when designing tables, optimizing queries, or
|
|
6
|
-
making decisions about data storage technologies.
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# Data Modeling
|
|
10
|
-
|
|
11
|
-
## When to use this skill
|
|
12
|
-
|
|
13
|
-
Use this skill when:
|
|
14
|
-
|
|
15
|
-
- Designing database schemas
|
|
16
|
-
- Optimizing query performance
|
|
17
|
-
- Choosing storage technologies
|
|
18
|
-
- Planning schema migrations
|
|
19
|
-
- Balancing normalization with performance
|
|
20
|
-
|
|
21
|
-
## Schema Design
|
|
22
|
-
|
|
23
|
-
### Normalization
|
|
24
|
-
|
|
25
|
-
- **1NF**: Atomic values, no repeating groups
|
|
26
|
-
- **2NF**: No partial dependencies
|
|
27
|
-
- **3NF**: No transitive dependencies
|
|
28
|
-
- Normalize first, then denormalize strategically
|
|
29
|
-
|
|
30
|
-
### Denormalization Trade-offs
|
|
31
|
-
|
|
32
|
-
- Improves read performance
|
|
33
|
-
- Complicates writes and updates
|
|
34
|
-
- Risk of data inconsistency
|
|
35
|
-
- Use for read-heavy workloads
|
|
36
|
-
|
|
37
|
-
## Data Store Selection
|
|
38
|
-
|
|
39
|
-
### Relational (SQL)
|
|
40
|
-
|
|
41
|
-
- Strong consistency requirements
|
|
42
|
-
- Complex queries and joins
|
|
43
|
-
- ACID transactions needed
|
|
44
|
-
- Well-defined schema
|
|
45
|
-
|
|
46
|
-
### Document (NoSQL)
|
|
47
|
-
|
|
48
|
-
- Flexible, evolving schemas
|
|
49
|
-
- Hierarchical data
|
|
50
|
-
- Horizontal scaling priority
|
|
51
|
-
- Read-heavy workloads
|
|
52
|
-
|
|
53
|
-
### Key-Value
|
|
54
|
-
|
|
55
|
-
- Simple lookup patterns
|
|
56
|
-
- Extreme performance needs
|
|
57
|
-
- Caching layer
|
|
58
|
-
- Session storage
|
|
59
|
-
|
|
60
|
-
### Time Series
|
|
61
|
-
|
|
62
|
-
- Temporal data patterns
|
|
63
|
-
- High write throughput
|
|
64
|
-
- Time-based queries
|
|
65
|
-
- Sensor and metrics data
|
|
66
|
-
|
|
67
|
-
## Indexing Strategy
|
|
68
|
-
|
|
69
|
-
### When to Index
|
|
70
|
-
|
|
71
|
-
- Columns in WHERE clauses
|
|
72
|
-
- Join columns
|
|
73
|
-
- ORDER BY columns
|
|
74
|
-
- High-cardinality columns
|
|
75
|
-
|
|
76
|
-
### Index Trade-offs
|
|
77
|
-
|
|
78
|
-
- Faster reads, slower writes
|
|
79
|
-
- Storage overhead
|
|
80
|
-
- Maintenance cost
|
|
81
|
-
- Query planner complexity
|
|
82
|
-
|
|
83
|
-
## Schema Migrations
|
|
84
|
-
|
|
85
|
-
### Safe Migration Practices
|
|
86
|
-
|
|
87
|
-
- Make changes backward compatible
|
|
88
|
-
- Add columns before using them
|
|
89
|
-
- Migrate data before dropping columns
|
|
90
|
-
- Test migrations on production-like data
|
|
91
|
-
|
|
92
|
-
## Data Modeling Checklist
|
|
93
|
-
|
|
94
|
-
- [ ] Requirements understood
|
|
95
|
-
- [ ] Appropriate storage technology selected
|
|
96
|
-
- [ ] Schema normalized appropriately
|
|
97
|
-
- [ ] Indexes support query patterns
|
|
98
|
-
- [ ] Migration plan is safe
|
|
99
|
-
- [ ] Backward compatibility maintained
|
|
@@ -1,99 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: developer-experience
|
|
3
|
-
description: |
|
|
4
|
-
Guide for improving developer experience and creating self-service
|
|
5
|
-
platforms. Use when designing golden paths, creating getting-started
|
|
6
|
-
guides, reducing developer friction, or building internal platforms.
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# Developer Experience
|
|
10
|
-
|
|
11
|
-
## When to use this skill
|
|
12
|
-
|
|
13
|
-
Use this skill when:
|
|
14
|
-
|
|
15
|
-
- Designing developer onboarding experiences
|
|
16
|
-
- Creating golden paths for common workflows
|
|
17
|
-
- Building self-service platform capabilities
|
|
18
|
-
- Reducing friction in developer workflows
|
|
19
|
-
- Writing getting-started documentation
|
|
20
|
-
|
|
21
|
-
## Golden Path Design
|
|
22
|
-
|
|
23
|
-
### Principles
|
|
24
|
-
|
|
25
|
-
- Opinionated but not restrictive
|
|
26
|
-
- Works out of the box with minimal configuration
|
|
27
|
-
- Covers 80% of use cases well
|
|
28
|
-
- Easy to discover, hard to miss
|
|
29
|
-
|
|
30
|
-
### Components
|
|
31
|
-
|
|
32
|
-
- **Templates**: Starter projects with best practices
|
|
33
|
-
- **CLI tools**: Automate common tasks
|
|
34
|
-
- **Documentation**: Clear, task-focused guides
|
|
35
|
-
- **Examples**: Working code for common patterns
|
|
36
|
-
|
|
37
|
-
## Friction Log Process
|
|
38
|
-
|
|
39
|
-
### Observation
|
|
40
|
-
|
|
41
|
-
1. Shadow developers doing real tasks
|
|
42
|
-
2. Note every hesitation, confusion, or workaround
|
|
43
|
-
3. Time how long each step takes
|
|
44
|
-
4. Record what documentation they consult
|
|
45
|
-
|
|
46
|
-
### Analysis
|
|
47
|
-
|
|
48
|
-
- Categorize friction points (tooling, docs, process)
|
|
49
|
-
- Identify patterns across multiple observations
|
|
50
|
-
- Prioritize by frequency × severity
|
|
51
|
-
- Distinguish symptoms from root causes
|
|
52
|
-
|
|
53
|
-
### Action
|
|
54
|
-
|
|
55
|
-
- Quick wins: Fix in days, high impact
|
|
56
|
-
- Medium-term: Requires design, weeks
|
|
57
|
-
- Strategic: Platform changes, months
|
|
58
|
-
|
|
59
|
-
## Self-Service Design
|
|
60
|
-
|
|
61
|
-
### Day 1 Experience
|
|
62
|
-
|
|
63
|
-
- New developer can deploy in < 1 hour
|
|
64
|
-
- No tickets or approvals needed
|
|
65
|
-
- Immediate feedback on success/failure
|
|
66
|
-
- Clear next steps after initial success
|
|
67
|
-
|
|
68
|
-
### Day 50 Experience
|
|
69
|
-
|
|
70
|
-
- Common tasks are still easy
|
|
71
|
-
- Edge cases are documented
|
|
72
|
-
- Escape hatches exist for advanced needs
|
|
73
|
-
- Platform grows with team needs
|
|
74
|
-
|
|
75
|
-
## Documentation Standards
|
|
76
|
-
|
|
77
|
-
### Getting Started Guides
|
|
78
|
-
|
|
79
|
-
- Prerequisites clearly listed
|
|
80
|
-
- Copy-paste commands that work
|
|
81
|
-
- Expected output shown
|
|
82
|
-
- Troubleshooting for common issues
|
|
83
|
-
|
|
84
|
-
### Reference Documentation
|
|
85
|
-
|
|
86
|
-
- Complete API coverage
|
|
87
|
-
- Examples for every feature
|
|
88
|
-
- Search-friendly structure
|
|
89
|
-
- Kept in sync with code
|
|
90
|
-
|
|
91
|
-
## DX Checklist
|
|
92
|
-
|
|
93
|
-
- [ ] New developer can get started without help
|
|
94
|
-
- [ ] Golden path covers common use cases
|
|
95
|
-
- [ ] Friction points are documented and prioritized
|
|
96
|
-
- [ ] Self-service for common operations
|
|
97
|
-
- [ ] Documentation is discoverable and accurate
|
|
98
|
-
- [ ] Feedback mechanisms exist
|
|
99
|
-
- [ ] Metrics track developer productivity
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: knowledge-management
|
|
3
|
-
description: |
|
|
4
|
-
Guide for capturing, organizing, and sharing organizational knowledge.
|
|
5
|
-
Use when creating knowledge bases, organizing documentation, reducing
|
|
6
|
-
knowledge silos, or establishing knowledge sharing practices.
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# Knowledge Management
|
|
10
|
-
|
|
11
|
-
## When to use this skill
|
|
12
|
-
|
|
13
|
-
Use this skill when:
|
|
14
|
-
|
|
15
|
-
- Creating or organizing knowledge bases
|
|
16
|
-
- Documenting institutional knowledge
|
|
17
|
-
- Reducing single-person dependencies
|
|
18
|
-
- Establishing knowledge sharing practices
|
|
19
|
-
- Making information discoverable
|
|
20
|
-
|
|
21
|
-
## Knowledge Capture
|
|
22
|
-
|
|
23
|
-
### What to Document
|
|
24
|
-
|
|
25
|
-
- **Decisions**: Why we chose X over Y
|
|
26
|
-
- **Context**: What we knew when we decided
|
|
27
|
-
- **Procedures**: How to do recurring tasks
|
|
28
|
-
- **Troubleshooting**: Common problems and solutions
|
|
29
|
-
- **Architecture**: How systems work and why
|
|
30
|
-
|
|
31
|
-
### When to Capture
|
|
32
|
-
|
|
33
|
-
- After making significant decisions
|
|
34
|
-
- After solving novel problems
|
|
35
|
-
- Before someone leaves or changes roles
|
|
36
|
-
- When you explain something more than twice
|
|
37
|
-
- During incident post-mortems
|
|
38
|
-
|
|
39
|
-
## Knowledge Organization
|
|
40
|
-
|
|
41
|
-
### Structure Principles
|
|
42
|
-
|
|
43
|
-
- Organize by task, not by team
|
|
44
|
-
- Use consistent naming conventions
|
|
45
|
-
- Create clear navigation paths
|
|
46
|
-
- Link related content together
|
|
47
|
-
- Maintain a clear hierarchy
|
|
48
|
-
|
|
49
|
-
### Discoverability
|
|
50
|
-
|
|
51
|
-
- Searchable titles and headings
|
|
52
|
-
- Keywords and tags for filtering
|
|
53
|
-
- Landing pages for major topics
|
|
54
|
-
- Recently updated sections visible
|
|
55
|
-
- Cross-linking between related docs
|
|
56
|
-
|
|
57
|
-
## Knowledge Maintenance
|
|
58
|
-
|
|
59
|
-
### Keep Current
|
|
60
|
-
|
|
61
|
-
- Review docs when code changes
|
|
62
|
-
- Date-stamp time-sensitive content
|
|
63
|
-
- Archive rather than delete outdated info
|
|
64
|
-
- Assign ownership for key documents
|
|
65
|
-
- Schedule periodic review cycles
|
|
66
|
-
|
|
67
|
-
### Quality Standards
|
|
68
|
-
|
|
69
|
-
- Clear ownership for each document
|
|
70
|
-
- Last-updated dates visible
|
|
71
|
-
- Contact for questions listed
|
|
72
|
-
- Review schedule defined
|
|
73
|
-
- Deprecation process documented
|
|
74
|
-
|
|
75
|
-
## Reducing Knowledge Silos
|
|
76
|
-
|
|
77
|
-
### Identify Risks
|
|
78
|
-
|
|
79
|
-
- Single points of knowledge failure
|
|
80
|
-
- Undocumented tribal knowledge
|
|
81
|
-
- Expertise concentrated in individuals
|
|
82
|
-
- Critical processes in one person's head
|
|
83
|
-
|
|
84
|
-
### Mitigation Strategies
|
|
85
|
-
|
|
86
|
-
- Pair programming and shadowing
|
|
87
|
-
- Recorded walkthroughs for complex systems
|
|
88
|
-
- Cross-training sessions
|
|
89
|
-
- Written runbooks for critical processes
|
|
90
|
-
- Regular knowledge sharing meetings
|
|
91
|
-
|
|
92
|
-
## Knowledge Management Checklist
|
|
93
|
-
|
|
94
|
-
- [ ] Key decisions are documented with rationale
|
|
95
|
-
- [ ] Procedures are written and discoverable
|
|
96
|
-
- [ ] No critical single-person dependencies
|
|
97
|
-
- [ ] Documentation ownership is clear
|
|
98
|
-
- [ ] Content is regularly reviewed and updated
|
|
99
|
-
- [ ] New team members can self-serve information
|
|
100
|
-
- [ ] Search finds relevant content quickly
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: pattern-generalization
|
|
3
|
-
description: |
|
|
4
|
-
Guide for extracting reusable patterns from specific solutions. Use when
|
|
5
|
-
identifying candidates for generalization, designing abstractions, or
|
|
6
|
-
building platform capabilities from field-validated solutions.
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# Pattern Generalization
|
|
10
|
-
|
|
11
|
-
## When to use this skill
|
|
12
|
-
|
|
13
|
-
Use this skill when:
|
|
14
|
-
|
|
15
|
-
- Identifying solutions that could benefit other teams
|
|
16
|
-
- Extracting reusable components from custom code
|
|
17
|
-
- Designing abstractions for common patterns
|
|
18
|
-
- Building platform capabilities from field solutions
|
|
19
|
-
- Deciding when to generalize vs keep custom
|
|
20
|
-
|
|
21
|
-
## Generalization Criteria
|
|
22
|
-
|
|
23
|
-
### When to Generalize
|
|
24
|
-
|
|
25
|
-
- Pattern appears in 3+ implementations
|
|
26
|
-
- Solution has been validated in production
|
|
27
|
-
- Multiple teams would benefit
|
|
28
|
-
- Core logic is stable and understood
|
|
29
|
-
- Customization needs are well-defined
|
|
30
|
-
|
|
31
|
-
### When to Keep Custom
|
|
32
|
-
|
|
33
|
-
- Only one team needs it
|
|
34
|
-
- Requirements are still evolving
|
|
35
|
-
- Context is highly specific
|
|
36
|
-
- Generalization cost exceeds benefit
|
|
37
|
-
- Speed to market is critical
|
|
38
|
-
|
|
39
|
-
## Abstraction Design
|
|
40
|
-
|
|
41
|
-
### Principles
|
|
42
|
-
|
|
43
|
-
- Solve the common case simply
|
|
44
|
-
- Allow escape hatches for edge cases
|
|
45
|
-
- Make the right thing easy, wrong thing possible
|
|
46
|
-
- Prefer composition over configuration
|
|
47
|
-
- Hide complexity, expose simplicity
|
|
48
|
-
|
|
49
|
-
### Trade-offs
|
|
50
|
-
|
|
51
|
-
- **Flexibility vs Simplicity**: More options = more complexity
|
|
52
|
-
- **Generality vs Performance**: Generic solutions may be slower
|
|
53
|
-
- **Reusability vs Fit**: Shared code may not fit any use case perfectly
|
|
54
|
-
- **Maintainability vs Features**: More features = more maintenance
|
|
55
|
-
|
|
56
|
-
## Extraction Process
|
|
57
|
-
|
|
58
|
-
### 1. Identify the Pattern
|
|
59
|
-
|
|
60
|
-
- What's common across implementations?
|
|
61
|
-
- What varies between uses?
|
|
62
|
-
- What are the extension points?
|
|
63
|
-
- What are the invariants?
|
|
64
|
-
|
|
65
|
-
### 2. Design the Interface
|
|
66
|
-
|
|
67
|
-
- Start with the simplest API that works
|
|
68
|
-
- Make common cases one-liners
|
|
69
|
-
- Provide sensible defaults
|
|
70
|
-
- Document customization options
|
|
71
|
-
|
|
72
|
-
### 3. Validate in New Context
|
|
73
|
-
|
|
74
|
-
- Test with a different team/use case
|
|
75
|
-
- Gather feedback on API usability
|
|
76
|
-
- Identify missing flexibility
|
|
77
|
-
- Refine based on real usage
|
|
78
|
-
|
|
79
|
-
### 4. Document and Publish
|
|
80
|
-
|
|
81
|
-
- Clear getting-started guide
|
|
82
|
-
- Examples for common patterns
|
|
83
|
-
- Migration guide from custom solutions
|
|
84
|
-
- Support and contribution process
|
|
85
|
-
|
|
86
|
-
## Generalization Anti-patterns
|
|
87
|
-
|
|
88
|
-
- **Premature generalization**: Abstracting before understanding
|
|
89
|
-
- **Kitchen sink**: Adding every possible feature
|
|
90
|
-
- **Leaky abstraction**: Implementation details exposed
|
|
91
|
-
- **Configuration overload**: Too many options to understand
|
|
92
|
-
- **Orphaned abstraction**: No clear owner or support
|
|
93
|
-
|
|
94
|
-
## Pattern Generalization Checklist
|
|
95
|
-
|
|
96
|
-
- [ ] Pattern validated in multiple contexts
|
|
97
|
-
- [ ] Clear benefit over custom solutions
|
|
98
|
-
- [ ] Simple API for common cases
|
|
99
|
-
- [ ] Extension points for customization
|
|
100
|
-
- [ ] Documentation and examples ready
|
|
101
|
-
- [ ] Migration path from existing solutions
|
|
102
|
-
- [ ] Ownership and support defined
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: technical-writing
|
|
3
|
-
description: |
|
|
4
|
-
Guide for creating clear technical documentation. Use when writing READMEs,
|
|
5
|
-
API docs, specifications, or any technical content that needs to be clear
|
|
6
|
-
and accurate.
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
# Technical Writing
|
|
10
|
-
|
|
11
|
-
## When to use this skill
|
|
12
|
-
|
|
13
|
-
Use this skill when:
|
|
14
|
-
|
|
15
|
-
- Writing README files
|
|
16
|
-
- Creating API documentation
|
|
17
|
-
- Writing technical specifications
|
|
18
|
-
- Documenting code and systems
|
|
19
|
-
- Creating guides and tutorials
|
|
20
|
-
|
|
21
|
-
## Writing Principles
|
|
22
|
-
|
|
23
|
-
### Clarity First
|
|
24
|
-
|
|
25
|
-
- Use simple, direct language
|
|
26
|
-
- One idea per sentence
|
|
27
|
-
- Active voice over passive
|
|
28
|
-
- Avoid jargon unless defined
|
|
29
|
-
- Be specific, not vague
|
|
30
|
-
|
|
31
|
-
### Know Your Audience
|
|
32
|
-
|
|
33
|
-
- What do they already know?
|
|
34
|
-
- What do they need to accomplish?
|
|
35
|
-
- What's their skill level?
|
|
36
|
-
- What questions will they have?
|
|
37
|
-
|
|
38
|
-
### Structure for Scanning
|
|
39
|
-
|
|
40
|
-
- Lead with the most important information
|
|
41
|
-
- Use headings and subheadings
|
|
42
|
-
- Keep paragraphs short
|
|
43
|
-
- Use lists for multiple items
|
|
44
|
-
- Highlight key terms
|
|
45
|
-
|
|
46
|
-
## Document Types
|
|
47
|
-
|
|
48
|
-
### README
|
|
49
|
-
|
|
50
|
-
- What is this project?
|
|
51
|
-
- How do I get started?
|
|
52
|
-
- How do I use it?
|
|
53
|
-
- Where do I get help?
|
|
54
|
-
|
|
55
|
-
### API Documentation
|
|
56
|
-
|
|
57
|
-
- Endpoint description
|
|
58
|
-
- Parameters and types
|
|
59
|
-
- Request/response examples
|
|
60
|
-
- Error codes and handling
|
|
61
|
-
|
|
62
|
-
### Technical Specification
|
|
63
|
-
|
|
64
|
-
- Problem statement
|
|
65
|
-
- Proposed solution
|
|
66
|
-
- Alternatives considered
|
|
67
|
-
- Implementation plan
|
|
68
|
-
|
|
69
|
-
### Tutorial
|
|
70
|
-
|
|
71
|
-
- Clear learning objective
|
|
72
|
-
- Prerequisites listed
|
|
73
|
-
- Step-by-step instructions
|
|
74
|
-
- Expected outcomes shown
|
|
75
|
-
|
|
76
|
-
## README Template
|
|
77
|
-
|
|
78
|
-
```markdown
|
|
79
|
-
# Project Name
|
|
80
|
-
|
|
81
|
-
Brief description of what this project does.
|
|
82
|
-
|
|
83
|
-
## Getting Started
|
|
84
|
-
|
|
85
|
-
### Prerequisites
|
|
86
|
-
|
|
87
|
-
- Required software and versions
|
|
88
|
-
|
|
89
|
-
### Installation
|
|
90
|
-
|
|
91
|
-
Step-by-step installation instructions.
|
|
92
|
-
|
|
93
|
-
### Quick Start
|
|
94
|
-
|
|
95
|
-
Minimal example to get running.
|
|
96
|
-
|
|
97
|
-
## Usage
|
|
98
|
-
|
|
99
|
-
Common use cases with examples.
|
|
100
|
-
|
|
101
|
-
## Contributing
|
|
102
|
-
|
|
103
|
-
How to contribute to the project.
|
|
104
|
-
|
|
105
|
-
## License
|
|
106
|
-
|
|
107
|
-
License information.
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
## Code Examples
|
|
111
|
-
|
|
112
|
-
Good examples are:
|
|
113
|
-
|
|
114
|
-
- Complete and runnable
|
|
115
|
-
- Minimal but realistic
|
|
116
|
-
- Copy-pasteable
|
|
117
|
-
- Annotated with comments
|
|
118
|
-
- Tested and verified
|
|
119
|
-
|
|
120
|
-
## Technical Writing Checklist
|
|
121
|
-
|
|
122
|
-
- [ ] Purpose is clear in first paragraph
|
|
123
|
-
- [ ] Audience is identified
|
|
124
|
-
- [ ] Prerequisites are listed
|
|
125
|
-
- [ ] Examples are tested and work
|
|
126
|
-
- [ ] Technical terms are defined
|
|
127
|
-
- [ ] Structure supports scanning
|
|
128
|
-
- [ ] No ambiguous pronouns
|
|
129
|
-
- [ ] Updated when code changes
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
# Track: Engineering Manager
|
|
2
|
-
# People and delivery leadership
|
|
3
|
-
|
|
4
|
-
name: Engineering Manager
|
|
5
|
-
|
|
6
|
-
# Track type - management track (professional defaults to false)
|
|
7
|
-
isManagement: true
|
|
8
|
-
|
|
9
|
-
# Shared content (used by both human job descriptions and agent profiles)
|
|
10
|
-
description:
|
|
11
|
-
People and delivery leadership, focusing on team effectiveness, career
|
|
12
|
-
development, and organizational outcomes. Creates space for curiosity and
|
|
13
|
-
experimentation; models ownership behaviours.
|
|
14
|
-
roleContext:
|
|
15
|
-
In this leadership role, you will focus on people and delivery management,
|
|
16
|
-
driving team effectiveness and career development. You will create space for
|
|
17
|
-
curiosity and experimentation while modeling ownership behaviours and ensuring
|
|
18
|
-
organizational outcomes are achieved.
|
|
19
|
-
|
|
20
|
-
# Derivation inputs - used by both human and agent profiles
|
|
21
|
-
skillModifiers:
|
|
22
|
-
business: 2
|
|
23
|
-
people: 2
|
|
24
|
-
reliability: -1
|
|
25
|
-
delivery: -2
|
|
26
|
-
scale: -2
|
|
27
|
-
behaviourModifiers:
|
|
28
|
-
polymathic_knowledge: 1
|
|
29
|
-
assessmentWeights:
|
|
30
|
-
skillWeight: 0.4
|
|
31
|
-
behaviourWeight: 0.6
|
|
32
|
-
|
|
33
|
-
# Agent-specific content
|
|
34
|
-
agent:
|
|
35
|
-
coreInstructions: |
|
|
36
|
-
You are a {specialization} leadership support agent. Your primary
|
|
37
|
-
focus is supporting engineering managers with team effectiveness,
|
|
38
|
-
process design, and communication.
|
|
39
|
-
|
|
40
|
-
People and process over direct implementation. You help create space
|
|
41
|
-
for curiosity and experimentation, model ownership behaviors, and
|
|
42
|
-
remove organizational friction.
|
|
43
|
-
|
|
44
|
-
Before making changes:
|
|
45
|
-
1. Consider team dynamics and individual growth
|
|
46
|
-
2. Think about systemic improvements over individual fixes
|
|
47
|
-
3. Focus on enabling others rather than doing directly
|
|
48
|
-
|
|
49
|
-
Your role is to support engineering judgment, not replace it.
|
|
50
|
-
constraints:
|
|
51
|
-
- Focus on enabling and empowering rather than doing directly
|
|
52
|
-
- Consider long-term team health over short-term fixes
|
|
53
|
-
- Support engineering judgment, don't replace it
|