@mindfoldhq/trellis 0.4.0-rc.0 → 0.4.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 (41) hide show
  1. package/README.md +3 -3
  2. package/dist/cli/index.js +1 -0
  3. package/dist/cli/index.js.map +1 -1
  4. package/dist/commands/init.d.ts +1 -0
  5. package/dist/commands/init.d.ts.map +1 -1
  6. package/dist/commands/init.js.map +1 -1
  7. package/dist/configurators/droid.d.ts +5 -0
  8. package/dist/configurators/droid.d.ts.map +1 -0
  9. package/dist/configurators/droid.js +48 -0
  10. package/dist/configurators/droid.js.map +1 -0
  11. package/dist/configurators/index.d.ts.map +1 -1
  12. package/dist/configurators/index.js +13 -0
  13. package/dist/configurators/index.js.map +1 -1
  14. package/dist/migrations/manifests/0.4.0-rc.1.json +9 -0
  15. package/dist/migrations/manifests/0.4.0.json +9 -0
  16. package/dist/templates/droid/commands/trellis/before-dev.md +33 -0
  17. package/dist/templates/droid/commands/trellis/brainstorm.md +491 -0
  18. package/dist/templates/droid/commands/trellis/break-loop.md +111 -0
  19. package/dist/templates/droid/commands/trellis/check-cross-layer.md +157 -0
  20. package/dist/templates/droid/commands/trellis/check.md +29 -0
  21. package/dist/templates/droid/commands/trellis/create-command.md +158 -0
  22. package/dist/templates/droid/commands/trellis/finish-work.md +147 -0
  23. package/dist/templates/droid/commands/trellis/integrate-skill.md +223 -0
  24. package/dist/templates/droid/commands/trellis/onboard.md +362 -0
  25. package/dist/templates/droid/commands/trellis/record-session.md +66 -0
  26. package/dist/templates/droid/commands/trellis/start.md +377 -0
  27. package/dist/templates/droid/commands/trellis/update-spec.md +358 -0
  28. package/dist/templates/droid/index.d.ts +27 -0
  29. package/dist/templates/droid/index.d.ts.map +1 -0
  30. package/dist/templates/droid/index.js +47 -0
  31. package/dist/templates/droid/index.js.map +1 -0
  32. package/dist/templates/extract.d.ts +11 -0
  33. package/dist/templates/extract.d.ts.map +1 -1
  34. package/dist/templates/extract.js +19 -0
  35. package/dist/templates/extract.js.map +1 -1
  36. package/dist/templates/trellis/scripts/common/cli_adapter.py +27 -2
  37. package/dist/types/ai-tools.d.ts +3 -3
  38. package/dist/types/ai-tools.d.ts.map +1 -1
  39. package/dist/types/ai-tools.js +9 -1
  40. package/dist/types/ai-tools.js.map +1 -1
  41. package/package.json +1 -1
@@ -0,0 +1,157 @@
1
+ ---
2
+ description: Check whether changes considered all layers and dimensions
3
+ ---
4
+
5
+ # Cross-Layer Check
6
+
7
+ Check if your changes considered all dimensions. Most bugs come from "didn't think of it", not lack of technical skill.
8
+
9
+ > **Note**: This is a **post-implementation** safety net. Ideally, read the [Pre-Implementation Checklist](.trellis/spec/guides/pre-implementation-checklist.md) **before** writing code.
10
+
11
+ ---
12
+
13
+ ## Related Documents
14
+
15
+ | Document | Purpose | Timing |
16
+ |----------|---------|--------|
17
+ | [Pre-Implementation Checklist](.trellis/spec/guides/pre-implementation-checklist.md) | Questions before coding | **Before** writing code |
18
+ | [Code Reuse Thinking Guide](.trellis/spec/guides/code-reuse-thinking-guide.md) | Pattern recognition | During implementation |
19
+ | **`/trellis-check-cross-layer`** (this) | Verification check | **After** implementation |
20
+
21
+ ---
22
+
23
+ ## Execution Steps
24
+
25
+ ### 1. Identify Change Scope
26
+
27
+ ```bash
28
+ git status
29
+ git diff --name-only
30
+ ```
31
+
32
+ ### 2. Select Applicable Check Dimensions
33
+
34
+ Based on your change type, execute relevant checks below:
35
+
36
+ ---
37
+
38
+ ## Dimension A: Cross-Layer Data Flow (Required when 3+ layers)
39
+
40
+ **Trigger**: Changes involve 3 or more layers
41
+
42
+ | Layer | Common Locations |
43
+ |-------|------------------|
44
+ | API/Routes | `routes/`, `api/`, `handlers/`, `controllers/` |
45
+ | Service/Business Logic | `services/`, `lib/`, `core/`, `domain/` |
46
+ | Database/Storage | `db/`, `models/`, `repositories/`, `schema/` |
47
+ | UI/Presentation | `components/`, `views/`, `templates/`, `pages/` |
48
+ | Utility | `utils/`, `helpers/`, `common/` |
49
+
50
+ **Checklist**:
51
+ - [ ] Read flow: Database -> Service -> API -> UI
52
+ - [ ] Write flow: UI -> API -> Service -> Database
53
+ - [ ] Types/schemas correctly passed between layers?
54
+ - [ ] Errors properly propagated to caller?
55
+ - [ ] Loading/pending states handled at each layer?
56
+
57
+ **Detailed Guide**: `.trellis/spec/guides/cross-layer-thinking-guide.md`
58
+
59
+ ---
60
+
61
+ ## Dimension B: Code Reuse (Required when modifying constants/config)
62
+
63
+ **Trigger**:
64
+ - Modifying UI constants (label, icon, color)
65
+ - Modifying any hardcoded value
66
+ - Seeing similar code in multiple places
67
+ - Creating a new utility/helper function
68
+ - Just finished batch modifications across files
69
+
70
+ **Checklist**:
71
+ - [ ] Search first: How many places define this value?
72
+ ```bash
73
+ # Search in source files (adjust extensions for your project)
74
+ grep -r "value-to-change" src/
75
+ ```
76
+ - [ ] If 2+ places define same value -> Should extract to shared constant
77
+ - [ ] After modification, all usage sites updated?
78
+ - [ ] If creating utility: Does similar utility already exist?
79
+
80
+ **Detailed Guide**: `.trellis/spec/guides/code-reuse-thinking-guide.md`
81
+
82
+ ---
83
+
84
+ ## Dimension B2: New Utility Functions
85
+
86
+ **Trigger**: About to create a new utility/helper function
87
+
88
+ **Checklist**:
89
+ - [ ] Search for existing similar utilities first
90
+ ```bash
91
+ grep -r "functionNamePattern" src/
92
+ ```
93
+ - [ ] If similar exists, can you extend it instead?
94
+ - [ ] If creating new, is it in the right location (shared vs domain-specific)?
95
+
96
+ ---
97
+
98
+ ## Dimension B3: After Batch Modifications
99
+
100
+ **Trigger**: Just modified similar patterns in multiple files
101
+
102
+ **Checklist**:
103
+ - [ ] Did you check ALL files with similar patterns?
104
+ ```bash
105
+ grep -r "patternYouChanged" src/
106
+ ```
107
+ - [ ] Any files missed that should also be updated?
108
+ - [ ] Should this pattern be abstracted to prevent future duplication?
109
+
110
+ ---
111
+
112
+ ## Dimension C: Import/Dependency Paths (Required when creating new files)
113
+
114
+ **Trigger**: Creating new source files
115
+
116
+ **Checklist**:
117
+ - [ ] Using correct import paths (relative vs absolute)?
118
+ - [ ] No circular dependencies?
119
+ - [ ] Consistent with project's module organization?
120
+
121
+ ---
122
+
123
+ ## Dimension D: Same-Layer Consistency
124
+
125
+ **Trigger**:
126
+ - Modifying display logic or formatting
127
+ - Same domain concept used in multiple places
128
+
129
+ **Checklist**:
130
+ - [ ] Search for other places using same concept
131
+ ```bash
132
+ grep -r "ConceptName" src/
133
+ ```
134
+ - [ ] Are these usages consistent?
135
+ - [ ] Should they share configuration/constants?
136
+
137
+ ---
138
+
139
+ ## Common Issues Quick Reference
140
+
141
+ | Issue | Root Cause | Prevention |
142
+ |-------|------------|------------|
143
+ | Changed one place, missed others | Didn't search impact scope | `grep` before changing |
144
+ | Data lost at some layer | Didn't check data flow | Trace data source to destination |
145
+ | Type/schema mismatch | Cross-layer types inconsistent | Use shared type definitions |
146
+ | UI/output inconsistent | Same concept in multiple places | Extract shared constants |
147
+ | Similar utility exists | Didn't search first | Search before creating |
148
+ | Batch fix incomplete | Didn't verify all occurrences | grep after fixing |
149
+
150
+ ---
151
+
152
+ ## Output
153
+
154
+ Report:
155
+ 1. Which dimensions your changes involve
156
+ 2. Check results for each dimension
157
+ 3. Issues found and fix suggestions
@@ -0,0 +1,29 @@
1
+ ---
2
+ description: Verify the code you just wrote follows the development guidelines
3
+ ---
4
+
5
+ Check if the code you just wrote follows the development guidelines.
6
+
7
+ Execute these steps:
8
+
9
+ 1. **Identify changed files**:
10
+ ```bash
11
+ git diff --name-only HEAD
12
+ ```
13
+
14
+ 2. **Determine which spec modules apply** based on the changed file paths:
15
+ ```bash
16
+ python3 ./.trellis/scripts/get_context.py --mode packages
17
+ ```
18
+
19
+ 3. **Read the spec index** for each relevant module:
20
+ ```bash
21
+ cat .trellis/spec/<package>/<layer>/index.md
22
+ ```
23
+ Follow the **"Quality Check"** section in the index.
24
+
25
+ 4. **Read the specific guideline files** referenced in the Quality Check section (e.g., `quality-guidelines.md`, `conventions.md`). The index is NOT the goal — it points you to the actual guideline files. Read those files and review your code against them.
26
+
27
+ 5. **Run lint and typecheck** for the affected package.
28
+
29
+ 6. **Report any violations** and fix them if found.
@@ -0,0 +1,158 @@
1
+ ---
2
+ description: Create a new Trellis slash command across supported platforms
3
+ ---
4
+
5
+ # Create New Slash Command
6
+
7
+ Create a new slash command in both `.cursor/commands/` (with `trellis-` prefix) and `.claude/commands/trellis/` directories based on user requirements.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /trellis-create-command <command-name> <description>
13
+ ```
14
+
15
+ **Example**:
16
+ ```
17
+ /trellis-create-command review-pr Check PR code changes against project guidelines
18
+ ```
19
+
20
+ ## Execution Steps
21
+
22
+ ### 1. Parse Input
23
+
24
+ Extract from user input:
25
+ - **Command name**: Use kebab-case (e.g., `review-pr`)
26
+ - **Description**: What the command should accomplish
27
+
28
+ ### 2. Analyze Requirements
29
+
30
+ Determine command type based on description:
31
+ - **Initialization**: Read docs, establish context
32
+ - **Pre-development**: Read guidelines, check dependencies
33
+ - **Code check**: Validate code quality and guideline compliance
34
+ - **Recording**: Record progress, questions, structure changes
35
+ - **Generation**: Generate docs, code templates
36
+
37
+ ### 3. Generate Command Content
38
+
39
+ Based on command type, generate appropriate content:
40
+
41
+ **Simple command** (1-3 lines):
42
+ ```markdown
43
+ Concise instruction describing what to do
44
+ ```
45
+
46
+ **Complex command** (with steps):
47
+ ```markdown
48
+ # Command Title
49
+
50
+ Command description
51
+
52
+ ## Steps
53
+
54
+ ### 1. First Step
55
+ Specific action
56
+
57
+ ### 2. Second Step
58
+ Specific action
59
+
60
+ ## Output Format (if needed)
61
+
62
+ Template
63
+ ```
64
+
65
+ ### 4. Create Files
66
+
67
+ Create in both directories:
68
+ - `.cursor/commands/trellis-<command-name>.md`
69
+ - `.claude/commands/trellis/<command-name>.md`
70
+
71
+ ### 5. Confirm Creation
72
+
73
+ Output result:
74
+ ```
75
+ [OK] Created Slash Command: /<command-name>
76
+
77
+ File paths:
78
+ - .cursor/commands/trellis-<command-name>.md
79
+ - .claude/commands/trellis/<command-name>.md
80
+
81
+ Usage:
82
+ /trellis-<command-name>
83
+
84
+ Description:
85
+ <description>
86
+ ```
87
+
88
+ ## Command Content Guidelines
89
+
90
+ ### [OK] Good command content
91
+
92
+ 1. **Clear and concise**: Immediately understandable
93
+ 2. **Executable**: AI can follow steps directly
94
+ 3. **Well-scoped**: Clear boundaries of what to do and not do
95
+ 4. **Has output**: Specifies expected output format (if needed)
96
+
97
+ ### [X] Avoid
98
+
99
+ 1. **Too vague**: e.g., "optimize code"
100
+ 2. **Too complex**: Single command should not exceed 100 lines
101
+ 3. **Duplicate functionality**: Check if similar command exists first
102
+
103
+ ## Naming Conventions
104
+
105
+ | Command Type | Prefix | Example |
106
+ |--------------|--------|---------|
107
+ | Session Start | `start` | `start` |
108
+ | Pre-development | `before-` | `before-dev` |
109
+ | Check | `check-` | `check` |
110
+ | Record | `record-` | `record-session` |
111
+ | Generate | `generate-` | `generate-api-doc` |
112
+ | Update | `update-` | `update-changelog` |
113
+ | Other | Verb-first | `review-code`, `sync-data` |
114
+
115
+ ## Example
116
+
117
+ ### Input
118
+ ```
119
+ /trellis-create-command review-pr Check PR code changes against project guidelines
120
+ ```
121
+
122
+ ### Generated Command Content
123
+ ```markdown
124
+ # PR Code Review
125
+
126
+ Check current PR code changes against project guidelines.
127
+
128
+ ## Steps
129
+
130
+ ### 1. Get Changed Files
131
+ ```bash
132
+ git diff main...HEAD --name-only
133
+ ```
134
+
135
+ ### 2. Categorized Review
136
+
137
+ **Frontend files** (`apps/web/`):
138
+ - Reference `.trellis/spec/frontend/index.md`
139
+
140
+ **Backend files** (`packages/api/`):
141
+ - Reference `.trellis/spec/backend/index.md`
142
+
143
+ ### 3. Output Review Report
144
+
145
+ Format:
146
+
147
+ ## PR Review Report
148
+
149
+ ### Changed Files
150
+ - [file list]
151
+
152
+ ### Check Results
153
+ - [OK] Passed items
154
+ - [X] Issues found
155
+
156
+ ### Suggestions
157
+ - [improvement suggestions]
158
+ ```
@@ -0,0 +1,147 @@
1
+ ---
2
+ description: Pre-commit checklist to verify work completeness before submitting
3
+ ---
4
+
5
+ # Finish Work - Pre-Commit Checklist
6
+
7
+ Before submitting or committing, use this checklist to ensure work completeness.
8
+
9
+ **Timing**: After code is written and tested, before commit
10
+
11
+ ---
12
+
13
+ ## Checklist
14
+
15
+ ### 1. Code Quality
16
+
17
+ ```bash
18
+ # Must pass
19
+ pnpm lint
20
+ pnpm type-check
21
+ pnpm test
22
+ ```
23
+
24
+ - [ ] `pnpm lint` passes with 0 errors?
25
+ - [ ] `pnpm type-check` passes with no type errors?
26
+ - [ ] Tests pass?
27
+ - [ ] No `console.log` statements (use logger)?
28
+ - [ ] No non-null assertions (the `x!` operator)?
29
+ - [ ] No `any` types?
30
+
31
+ ### 2. Code-Spec Sync
32
+
33
+ **Code-Spec Docs**:
34
+ - [ ] Does `.trellis/spec/backend/` need updates?
35
+ - New patterns, new modules, new conventions
36
+ - [ ] Does `.trellis/spec/frontend/` need updates?
37
+ - New components, new hooks, new patterns
38
+ - [ ] Does `.trellis/spec/guides/` need updates?
39
+ - New cross-layer flows, lessons from bugs
40
+
41
+ **Key Question**:
42
+ > "If I fixed a bug or discovered something non-obvious, should I document it so future me (or others) won't hit the same issue?"
43
+
44
+ If YES -> Update the relevant code-spec doc.
45
+
46
+ ### 2.5. Code-Spec Hard Block (Infra/Cross-Layer)
47
+
48
+ If this change touches infra or cross-layer contracts, this is a blocking checklist:
49
+
50
+ - [ ] Spec content is executable (real signatures/contracts), not principle-only text
51
+ - [ ] Includes file path + command/API name + payload field names
52
+ - [ ] Includes validation and error matrix
53
+ - [ ] Includes Good/Base/Bad cases
54
+ - [ ] Includes required tests and assertion points
55
+
56
+ **Block Rule**:
57
+ If infra/cross-layer changed but the related spec is still abstract, do NOT finish. Run `/trellis-update-spec` manually first.
58
+
59
+ ### 3. API Changes
60
+
61
+ If you modified API endpoints:
62
+
63
+ - [ ] Input schema updated?
64
+ - [ ] Output schema updated?
65
+ - [ ] API documentation updated?
66
+ - [ ] Client code updated to match?
67
+
68
+ ### 4. Database Changes
69
+
70
+ If you modified database schema:
71
+
72
+ - [ ] Migration file created?
73
+ - [ ] Schema file updated?
74
+ - [ ] Related queries updated?
75
+ - [ ] Seed data updated (if applicable)?
76
+
77
+ ### 5. Cross-Layer Verification
78
+
79
+ If the change spans multiple layers:
80
+
81
+ - [ ] Data flows correctly through all layers?
82
+ - [ ] Error handling works at each boundary?
83
+ - [ ] Types are consistent across layers?
84
+ - [ ] Loading states handled?
85
+
86
+ ### 6. Manual Testing
87
+
88
+ - [ ] Feature works in browser/app?
89
+ - [ ] Edge cases tested?
90
+ - [ ] Error states tested?
91
+ - [ ] Works after page refresh?
92
+
93
+ ---
94
+
95
+ ## Quick Check Flow
96
+
97
+ ```bash
98
+ # 1. Code checks
99
+ pnpm lint && pnpm type-check
100
+
101
+ # 2. View changes
102
+ git status
103
+ git diff --name-only
104
+
105
+ # 3. Based on changed files, check relevant items above
106
+ ```
107
+
108
+ ---
109
+
110
+ ## Common Oversights
111
+
112
+ | Oversight | Consequence | Check |
113
+ |-----------|-------------|-------|
114
+ | Code-spec docs not updated | Others don't know the change | Check .trellis/spec/ |
115
+ | Spec text is abstract only | Easy regressions in infra/cross-layer changes | Require signature/contract/matrix/cases/tests |
116
+ | Migration not created | Schema out of sync | Check db/migrations/ |
117
+ | Types not synced | Runtime errors | Check shared types |
118
+ | Tests not updated | False confidence | Run full test suite |
119
+ | Console.log left in | Noisy production logs | Search for console.log |
120
+
121
+ ---
122
+
123
+ ## Relationship to Other Commands
124
+
125
+ ```
126
+ Development Flow:
127
+ Write code -> Test -> /trellis-finish-work -> git commit -> /trellis-record-session
128
+ | |
129
+ Ensure completeness Record progress
130
+
131
+ Debug Flow:
132
+ Hit bug -> Fix -> /trellis-break-loop -> Knowledge capture
133
+ |
134
+ Deep analysis
135
+ ```
136
+
137
+ - `/trellis-finish-work` - Check work completeness (this command)
138
+ - `/trellis-record-session` - Record session and commits
139
+ - `/trellis-break-loop` - Deep analysis after debugging
140
+
141
+ ---
142
+
143
+ ## Core Principle
144
+
145
+ > **Delivery includes not just code, but also documentation, verification, and knowledge capture.**
146
+
147
+ Complete work = Code + Docs + Tests + Verification
@@ -0,0 +1,223 @@
1
+ ---
2
+ description: Adapt and integrate a Claude skill into project development guidelines
3
+ ---
4
+
5
+ # Integrate Claude Skill into Project Guidelines
6
+
7
+ Adapt and integrate a Claude global skill into your project's development guidelines (not directly into project code).
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /trellis-integrate-skill <skill-name>
13
+ ```
14
+
15
+ **Examples**:
16
+ ```
17
+ /trellis-integrate-skill frontend-design
18
+ /trellis-integrate-skill mcp-builder
19
+ ```
20
+
21
+ ## Core Principle
22
+
23
+ > [!] **Important**: The goal of skill integration is to update **development guidelines**, not to generate project code directly.
24
+ >
25
+ > - Guidelines content -> Write to `.trellis/spec/{target}/doc.md`
26
+ > - Code examples -> Place in `.trellis/spec/{target}/examples/skills/<skill-name>/`
27
+ > - Example files -> Use `.template` suffix (e.g., `component.tsx.template`) to avoid IDE errors
28
+ >
29
+ > Where `{target}` is `frontend` or `backend`, determined by skill type.
30
+
31
+ ## Execution Steps
32
+
33
+ ### 1. Read Skill Content
34
+
35
+ ```bash
36
+ openskills read <skill-name>
37
+ ```
38
+
39
+ If the skill doesn't exist, prompt user to check available skills:
40
+ ```bash
41
+ # Available skills are listed in AGENTS.md under <available_skills>
42
+ ```
43
+
44
+ ### 2. Determine Integration Target
45
+
46
+ Based on skill type, determine which guidelines to update:
47
+
48
+ | Skill Category | Integration Target |
49
+ |----------------|-------------------|
50
+ | UI/Frontend (`frontend-design`, `web-artifacts-builder`) | `.trellis/spec/frontend/` |
51
+ | Backend/API (`mcp-builder`) | `.trellis/spec/backend/` |
52
+ | Documentation (`doc-coauthoring`, `docx`, `pdf`) | `.trellis/` or create dedicated guidelines |
53
+ | Testing (`webapp-testing`) | `.trellis/spec/frontend/` (E2E) |
54
+
55
+ ### 3. Analyze Skill Content
56
+
57
+ Extract from the skill:
58
+ - **Core concepts**: How the skill works and key concepts
59
+ - **Best practices**: Recommended approaches
60
+ - **Code patterns**: Reusable code templates
61
+ - **Caveats**: Common issues and solutions
62
+
63
+ ### 4. Execute Integration
64
+
65
+ #### 4.1 Update Guidelines Document
66
+
67
+ Add a new section to the corresponding `doc.md`:
68
+
69
+ ```markdown
70
+ @@@section:skill-<skill-name>
71
+ ## # <Skill Name> Integration Guide
72
+
73
+ ### Overview
74
+ [Core functionality and use cases of the skill]
75
+
76
+ ### Project Adaptation
77
+ [How to use this skill in the current project]
78
+
79
+ ### Usage Steps
80
+ 1. [Step 1]
81
+ 2. [Step 2]
82
+
83
+ ### Caveats
84
+ - [Project-specific constraints]
85
+ - [Differences from default behavior]
86
+
87
+ ### Reference Examples
88
+ See `examples/skills/<skill-name>/`
89
+
90
+ @@@/section:skill-<skill-name>
91
+ ```
92
+
93
+ #### 4.2 Create Examples Directory (if code examples exist)
94
+
95
+ ```bash
96
+ # Directory structure ({target} = frontend or backend)
97
+ .trellis/spec/{target}/
98
+ |-- doc.md # Add skill-related section
99
+ |-- index.md # Update index
100
+ +-- examples/
101
+ +-- skills/
102
+ +-- <skill-name>/
103
+ |-- README.md # Example documentation
104
+ |-- example-1.ts.template # Code example (use .template suffix)
105
+ +-- example-2.tsx.template
106
+ ```
107
+
108
+ **File naming conventions**:
109
+ - Code files: `<name>.<ext>.template` (e.g., `component.tsx.template`)
110
+ - Config files: `<name>.config.template` (e.g., `tailwind.config.template`)
111
+ - Documentation: `README.md` (normal suffix)
112
+
113
+ #### 4.3 Update Index File
114
+
115
+ Add to the Quick Navigation table in `index.md`:
116
+
117
+ ```markdown
118
+ | <Skill-related task> | <Section name> | `skill-<skill-name>` |
119
+ ```
120
+
121
+ ### 5. Generate Integration Report
122
+
123
+ ---
124
+
125
+ ## Skill Integration Report: `<skill-name>`
126
+
127
+ ### # Overview
128
+ - **Skill description**: [Functionality description]
129
+ - **Integration target**: `.trellis/spec/{target}/`
130
+
131
+ ### # Tech Stack Compatibility
132
+
133
+ | Skill Requirement | Project Status | Compatibility |
134
+ |-------------------|----------------|---------------|
135
+ | [Tech 1] | [Project tech] | [OK]/[!]/[X] |
136
+
137
+ ### # Integration Locations
138
+
139
+ | Type | Path |
140
+ |------|------|
141
+ | Guidelines doc | `.trellis/spec/{target}/doc.md` (section: `skill-<name>`) |
142
+ | Code examples | `.trellis/spec/{target}/examples/skills/<name>/` |
143
+ | Index update | `.trellis/spec/{target}/index.md` |
144
+
145
+ > `{target}` = `frontend` or `backend`
146
+
147
+ ### # Dependencies (if needed)
148
+
149
+ ```bash
150
+ # Install required dependencies (adjust for your package manager)
151
+ npm install <package>
152
+ # or
153
+ pnpm add <package>
154
+ # or
155
+ yarn add <package>
156
+ ```
157
+
158
+ ### [OK] Completed Changes
159
+
160
+ - [ ] Added `@@@section:skill-<name>` section to `doc.md`
161
+ - [ ] Added index entry to `index.md`
162
+ - [ ] Created example files in `examples/skills/<name>/`
163
+ - [ ] Example files use `.template` suffix
164
+
165
+ ### # Related Guidelines
166
+
167
+ - [Existing related section IDs]
168
+
169
+ ---
170
+
171
+ ## 6. Optional: Create Usage Command
172
+
173
+ If this skill is frequently used, create a shortcut command:
174
+
175
+ ```bash
176
+ /trellis-create-command use-<skill-name> Use <skill-name> skill following project guidelines
177
+ ```
178
+
179
+ ## Common Skill Integration Reference
180
+
181
+ | Skill | Integration Target | Examples Directory |
182
+ |-------|-------------------|-------------------|
183
+ | `frontend-design` | `frontend` | `examples/skills/frontend-design/` |
184
+ | `mcp-builder` | `backend` | `examples/skills/mcp-builder/` |
185
+ | `webapp-testing` | `frontend` | `examples/skills/webapp-testing/` |
186
+ | `doc-coauthoring` | `.trellis/` | N/A (documentation workflow only) |
187
+
188
+ ## Example: Integrating `mcp-builder` Skill
189
+
190
+ ### Directory Structure
191
+
192
+ ```
193
+ .trellis/spec/backend/
194
+ |-- doc.md # Add MCP section
195
+ |-- index.md # Add index entry
196
+ +-- examples/
197
+ +-- skills/
198
+ +-- mcp-builder/
199
+ |-- README.md
200
+ |-- server.ts.template
201
+ |-- tools.ts.template
202
+ +-- types.ts.template
203
+ ```
204
+
205
+ ### New Section in doc.md
206
+
207
+ ```markdown
208
+ @@@section:skill-mcp-builder
209
+ ## # MCP Server Development Guide
210
+
211
+ ### Overview
212
+ Create LLM-callable tool services using MCP (Model Context Protocol).
213
+
214
+ ### Project Adaptation
215
+ - Place services in a dedicated directory
216
+ - Follow existing TypeScript and type definition conventions
217
+ - Use project's logging system
218
+
219
+ ### Reference Examples
220
+ See `examples/skills/mcp-builder/`
221
+
222
+ @@@/section:skill-mcp-builder
223
+ ```