deepspider 0.2.11 → 0.3.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 (146) hide show
  1. package/README.md +71 -24
  2. package/bin/cli.js +45 -0
  3. package/package.json +10 -4
  4. package/src/agent/core/PanelBridge.js +133 -0
  5. package/src/agent/core/RetryManager.js +51 -0
  6. package/src/agent/core/StreamHandler.js +263 -0
  7. package/src/agent/core/index.js +7 -0
  8. package/src/agent/errors/ErrorClassifier.js +43 -0
  9. package/src/agent/errors/SpiderError.js +68 -0
  10. package/src/agent/errors/index.js +19 -0
  11. package/src/agent/run.js +67 -460
  12. package/src/agent/setup.js +14 -14
  13. package/src/agent/subagents/factory.js +60 -0
  14. package/src/agent/subagents/index.js +3 -0
  15. package/src/agent/tools/report.js +36 -4
  16. package/src/browser/client.js +47 -10
  17. package/src/cli/commands/config.js +94 -0
  18. package/src/cli/commands/help.js +34 -0
  19. package/src/cli/commands/update.js +78 -0
  20. package/src/cli/commands/version.js +9 -0
  21. package/src/cli/config.js +15 -0
  22. package/src/config/settings.js +102 -0
  23. package/.claude/agents/check.md +0 -122
  24. package/.claude/agents/debug.md +0 -106
  25. package/.claude/agents/dispatch.md +0 -214
  26. package/.claude/agents/implement.md +0 -96
  27. package/.claude/agents/plan.md +0 -396
  28. package/.claude/agents/research.md +0 -120
  29. package/.claude/commands/evolve/merge.md +0 -80
  30. package/.claude/commands/trellis/before-backend-dev.md +0 -13
  31. package/.claude/commands/trellis/before-frontend-dev.md +0 -13
  32. package/.claude/commands/trellis/break-loop.md +0 -107
  33. package/.claude/commands/trellis/check-backend.md +0 -13
  34. package/.claude/commands/trellis/check-cross-layer.md +0 -153
  35. package/.claude/commands/trellis/check-frontend.md +0 -13
  36. package/.claude/commands/trellis/create-command.md +0 -154
  37. package/.claude/commands/trellis/finish-work.md +0 -129
  38. package/.claude/commands/trellis/integrate-skill.md +0 -219
  39. package/.claude/commands/trellis/onboard.md +0 -358
  40. package/.claude/commands/trellis/parallel.md +0 -193
  41. package/.claude/commands/trellis/record-session.md +0 -62
  42. package/.claude/commands/trellis/start.md +0 -280
  43. package/.claude/commands/trellis/update-spec.md +0 -213
  44. package/.claude/hooks/inject-subagent-context.py +0 -758
  45. package/.claude/hooks/ralph-loop.py +0 -374
  46. package/.claude/hooks/session-start.py +0 -126
  47. package/.claude/settings.json +0 -41
  48. package/.claude/skills/deepagents-guide/SKILL.md +0 -428
  49. package/.cursor/commands/trellis-before-backend-dev.md +0 -13
  50. package/.cursor/commands/trellis-before-frontend-dev.md +0 -13
  51. package/.cursor/commands/trellis-break-loop.md +0 -107
  52. package/.cursor/commands/trellis-check-backend.md +0 -13
  53. package/.cursor/commands/trellis-check-cross-layer.md +0 -153
  54. package/.cursor/commands/trellis-check-frontend.md +0 -13
  55. package/.cursor/commands/trellis-create-command.md +0 -154
  56. package/.cursor/commands/trellis-finish-work.md +0 -129
  57. package/.cursor/commands/trellis-integrate-skill.md +0 -219
  58. package/.cursor/commands/trellis-onboard.md +0 -358
  59. package/.cursor/commands/trellis-record-session.md +0 -62
  60. package/.cursor/commands/trellis-start.md +0 -156
  61. package/.cursor/commands/trellis-update-spec.md +0 -213
  62. package/.github/workflows/publish.yml +0 -63
  63. package/.husky/pre-commit +0 -1
  64. package/.mcp.json +0 -8
  65. package/.trellis/.template-hashes.json +0 -65
  66. package/.trellis/.version +0 -1
  67. package/.trellis/scripts/add-session.sh +0 -384
  68. package/.trellis/scripts/common/developer.sh +0 -129
  69. package/.trellis/scripts/common/git-context.sh +0 -263
  70. package/.trellis/scripts/common/paths.sh +0 -208
  71. package/.trellis/scripts/common/phase.sh +0 -150
  72. package/.trellis/scripts/common/registry.sh +0 -247
  73. package/.trellis/scripts/common/task-queue.sh +0 -142
  74. package/.trellis/scripts/common/task-utils.sh +0 -151
  75. package/.trellis/scripts/common/worktree.sh +0 -128
  76. package/.trellis/scripts/create-bootstrap.sh +0 -299
  77. package/.trellis/scripts/get-context.sh +0 -7
  78. package/.trellis/scripts/get-developer.sh +0 -15
  79. package/.trellis/scripts/init-developer.sh +0 -34
  80. package/.trellis/scripts/multi-agent/cleanup.sh +0 -396
  81. package/.trellis/scripts/multi-agent/create-pr.sh +0 -241
  82. package/.trellis/scripts/multi-agent/plan.sh +0 -207
  83. package/.trellis/scripts/multi-agent/start.sh +0 -310
  84. package/.trellis/scripts/multi-agent/status.sh +0 -828
  85. package/.trellis/scripts/task.sh +0 -1118
  86. package/.trellis/spec/backend/ci-cd-guidelines.md +0 -73
  87. package/.trellis/spec/backend/deepagents-guide.md +0 -380
  88. package/.trellis/spec/backend/directory-structure.md +0 -126
  89. package/.trellis/spec/backend/examples/skills/deepagents-guide/README.md +0 -11
  90. package/.trellis/spec/backend/examples/skills/deepagents-guide/agent.js.template +0 -20
  91. package/.trellis/spec/backend/examples/skills/deepagents-guide/skills-config.js.template +0 -13
  92. package/.trellis/spec/backend/examples/skills/deepagents-guide/subagent.js.template +0 -19
  93. package/.trellis/spec/backend/hook-guidelines.md +0 -218
  94. package/.trellis/spec/backend/index.md +0 -37
  95. package/.trellis/spec/backend/quality-guidelines.md +0 -302
  96. package/.trellis/spec/backend/state-management.md +0 -76
  97. package/.trellis/spec/backend/tool-guidelines.md +0 -144
  98. package/.trellis/spec/backend/type-safety.md +0 -71
  99. package/.trellis/spec/guides/code-reuse-thinking-guide.md +0 -92
  100. package/.trellis/spec/guides/cross-layer-thinking-guide.md +0 -94
  101. package/.trellis/spec/guides/index.md +0 -79
  102. package/.trellis/tasks/archive/02-02-evolving-skills/prd.md +0 -61
  103. package/.trellis/tasks/archive/02-02-evolving-skills/task.json +0 -29
  104. package/.trellis/tasks/archive/2026-02/00-bootstrap-guidelines/prd.md +0 -86
  105. package/.trellis/tasks/archive/2026-02/00-bootstrap-guidelines/task.json +0 -27
  106. package/.trellis/tasks/archive/2026-02/02-02-skills-system/check.jsonl +0 -3
  107. package/.trellis/tasks/archive/2026-02/02-02-skills-system/debug.jsonl +0 -2
  108. package/.trellis/tasks/archive/2026-02/02-02-skills-system/implement.jsonl +0 -5
  109. package/.trellis/tasks/archive/2026-02/02-02-skills-system/prd.md +0 -33
  110. package/.trellis/tasks/archive/2026-02/02-02-skills-system/task.json +0 -41
  111. package/.trellis/workflow.md +0 -407
  112. package/.trellis/workspace/index.md +0 -123
  113. package/.trellis/workspace/pony/index.md +0 -42
  114. package/.trellis/workspace/pony/journal-1.md +0 -125
  115. package/.trellis/worktree.yaml +0 -47
  116. package/AGENTS.md +0 -18
  117. package/CLAUDE.md +0 -315
  118. package/agents/deepspider.md +0 -142
  119. package/docs/DEBUG.md +0 -42
  120. package/docs/GUIDE.md +0 -334
  121. package/docs/PROMPT.md +0 -60
  122. package/docs/USAGE.md +0 -226
  123. package/eslint.config.js +0 -51
  124. package/test/analyze.test.js +0 -90
  125. package/test/envdump.test.js +0 -74
  126. package/test/flow.test.js +0 -90
  127. package/test/hooks.test.js +0 -138
  128. package/test/plugin.test.js +0 -35
  129. package/test/refactor-full.test.js +0 -30
  130. package/test/refactor.test.js +0 -21
  131. package/test/samples/obfuscated.js +0 -61
  132. package/test/samples/original.js +0 -66
  133. package/test/samples/v10_eval_chain.js +0 -52
  134. package/test/samples/v11_bytecode_vm.js +0 -81
  135. package/test/samples/v12_polymorphic.js +0 -69
  136. package/test/samples/v1_ob_basic.js +0 -98
  137. package/test/samples/v2_ob_advanced.js +0 -99
  138. package/test/samples/v3_jjencode.js +0 -77
  139. package/test/samples/v4_aaencode.js +0 -73
  140. package/test/samples/v5_control_flow.js +0 -86
  141. package/test/samples/v6_string_encryption.js +0 -71
  142. package/test/samples/v7_jsvmp.js +0 -83
  143. package/test/samples/v8_anti_debug.js +0 -79
  144. package/test/samples/v9_proxy_trap.js +0 -49
  145. package/test/samples.test.js +0 -96
  146. package/test/webcrack.test.js +0 -55
@@ -1,213 +0,0 @@
1
- # Update Spec - Capture Knowledge into Specifications
2
-
3
- When you learn something valuable (from debugging, implementing, or discussion), use this command to update the relevant spec documents.
4
-
5
- **Timing**: After completing a task, fixing a bug, or discovering a new pattern
6
-
7
- ---
8
-
9
- ## When to Update Specs
10
-
11
- | Trigger | Example | Target Spec |
12
- |---------|---------|-------------|
13
- | **Fixed a bug** | Found a subtle issue with error handling | `backend/error-handling.md` |
14
- | **Discovered a pattern** | Found a better way to structure code | Relevant guidelines file |
15
- | **Hit a gotcha** | Learned that X must be done before Y | Relevant spec + "Common Mistakes" section |
16
- | **Established a convention** | Team agreed on naming pattern | `quality-guidelines.md` |
17
- | **Cross-layer insight** | Understood how data flows between layers | `guides/cross-layer-thinking-guide.md` |
18
-
19
- ---
20
-
21
- ## Spec Structure Overview
22
-
23
- ```
24
- .trellis/spec/
25
- ├── backend/ # Backend development standards
26
- │ ├── index.md # Overview and links
27
- │ └── *.md # Topic-specific guidelines
28
- ├── frontend/ # Frontend development standards
29
- │ ├── index.md # Overview and links
30
- │ └── *.md # Topic-specific guidelines
31
- └── guides/ # Thinking guides
32
- ├── index.md # Guide index
33
- └── *.md # Topic-specific guides
34
- ```
35
-
36
- ---
37
-
38
- ## Update Process
39
-
40
- ### Step 1: Identify What You Learned
41
-
42
- Answer these questions:
43
-
44
- 1. **What did you learn?** (Be specific)
45
- 2. **Why is it important?** (What problem does it prevent?)
46
- 3. **Where does it belong?** (Which spec file?)
47
-
48
- ### Step 2: Classify the Update Type
49
-
50
- | Type | Description | Action |
51
- |------|-------------|--------|
52
- | **New Pattern** | A reusable approach discovered | Add to "Patterns" section |
53
- | **Forbidden Pattern** | Something that causes problems | Add to "Anti-patterns" or "Don't" section |
54
- | **Common Mistake** | Easy-to-make error | Add to "Common Mistakes" section |
55
- | **Convention** | Agreed-upon standard | Add to relevant section |
56
- | **Gotcha** | Non-obvious behavior | Add warning callout |
57
-
58
- ### Step 3: Read the Target Spec
59
-
60
- Before editing, read the current spec to:
61
- - Understand existing structure
62
- - Avoid duplicating content
63
- - Find the right section for your update
64
-
65
- ```bash
66
- cat .trellis/spec/<category>/<file>.md
67
- ```
68
-
69
- ### Step 4: Make the Update
70
-
71
- Follow these principles:
72
-
73
- 1. **Be Specific**: Include concrete examples, not just abstract rules
74
- 2. **Explain Why**: State the problem this prevents
75
- 3. **Show Code**: Add code snippets for patterns
76
- 4. **Keep it Short**: One concept per section
77
-
78
- ### Step 5: Update the Index (if needed)
79
-
80
- If you added a new section or the spec status changed, update the category's `index.md`.
81
-
82
- ---
83
-
84
- ## Update Templates
85
-
86
- ### Adding a New Pattern
87
-
88
- ```markdown
89
- ### Pattern Name
90
-
91
- **Problem**: What problem does this solve?
92
-
93
- **Solution**: Brief description of the approach.
94
-
95
- **Example**:
96
- \`\`\`
97
- // Good
98
- code example
99
-
100
- // Bad
101
- code example
102
- \`\`\`
103
-
104
- **Why**: Explanation of why this works better.
105
- ```
106
-
107
- ### Adding a Forbidden Pattern
108
-
109
- ```markdown
110
- ### Don't: Pattern Name
111
-
112
- **Problem**:
113
- \`\`\`
114
- // Don't do this
115
- bad code example
116
- \`\`\`
117
-
118
- **Why it's bad**: Explanation of the issue.
119
-
120
- **Instead**:
121
- \`\`\`
122
- // Do this instead
123
- good code example
124
- \`\`\`
125
- ```
126
-
127
- ### Adding a Common Mistake
128
-
129
- ```markdown
130
- ### Common Mistake: Description
131
-
132
- **Symptom**: What goes wrong
133
-
134
- **Cause**: Why this happens
135
-
136
- **Fix**: How to correct it
137
-
138
- **Prevention**: How to avoid it in the future
139
- ```
140
-
141
- ### Adding a Gotcha
142
-
143
- ```markdown
144
- > **Warning**: Brief description of the non-obvious behavior.
145
- >
146
- > Details about when this happens and how to handle it.
147
- ```
148
-
149
- ---
150
-
151
- ## Interactive Mode
152
-
153
- If you're unsure what to update, answer these prompts:
154
-
155
- 1. **What did you just finish?**
156
- - [ ] Fixed a bug
157
- - [ ] Implemented a feature
158
- - [ ] Refactored code
159
- - [ ] Had a discussion about approach
160
-
161
- 2. **What surprised you or was non-obvious?**
162
- - (Describe the insight)
163
-
164
- 3. **Would this help someone else avoid the same problem?**
165
- - Yes → Proceed to update spec
166
- - No → Maybe not worth documenting
167
-
168
- 4. **Which area does it relate to?**
169
- - [ ] Backend code
170
- - [ ] Frontend code
171
- - [ ] Cross-layer data flow
172
- - [ ] Code organization/reuse
173
- - [ ] Quality/testing
174
-
175
- ---
176
-
177
- ## Quality Checklist
178
-
179
- Before finishing your spec update:
180
-
181
- - [ ] Is the content specific and actionable?
182
- - [ ] Did you include a code example?
183
- - [ ] Did you explain WHY, not just WHAT?
184
- - [ ] Is it in the right spec file?
185
- - [ ] Does it duplicate existing content?
186
- - [ ] Would a new team member understand it?
187
-
188
- ---
189
-
190
- ## Relationship to Other Commands
191
-
192
- ```
193
- Development Flow:
194
- Learn something → /trellis-update-spec → Knowledge captured
195
- ↑ ↓
196
- /trellis-break-loop ←──────────────────── Future sessions benefit
197
- (deep bug analysis)
198
- ```
199
-
200
- - `/trellis-break-loop` - Analyzes bugs deeply, often reveals spec updates needed
201
- - `/trellis-update-spec` - Actually makes the updates (this command)
202
- - `/trellis-finish-work` - Reminds you to check if specs need updates
203
-
204
- ---
205
-
206
- ## Core Philosophy
207
-
208
- > **Specs are living documents. Every debugging session, every "aha moment" is an opportunity to make the spec better.**
209
-
210
- The goal is **institutional memory**:
211
- - What one person learns, everyone benefits from
212
- - What AI learns in one session, persists to future sessions
213
- - Mistakes become documented guardrails
@@ -1,63 +0,0 @@
1
- # GitHub Actions - npm 自动发布
2
- # 触发条件:推送 v* 标签时自动发布到 npm
3
-
4
- name: Publish to npm
5
-
6
- on:
7
- push:
8
- tags:
9
- - 'v*'
10
-
11
- jobs:
12
- test:
13
- runs-on: ubuntu-latest
14
- steps:
15
- - uses: actions/checkout@v4
16
-
17
- - uses: pnpm/action-setup@v4
18
- with:
19
- version: 9
20
-
21
- - uses: actions/setup-node@v4
22
- with:
23
- node-version: '20'
24
- cache: 'pnpm'
25
-
26
- - run: pnpm install --no-frozen-lockfile --ignore-scripts
27
- - run: pnpm lint
28
-
29
- publish:
30
- needs: test
31
- runs-on: ubuntu-latest
32
- permissions:
33
- contents: read
34
- id-token: write
35
- steps:
36
- - uses: actions/checkout@v4
37
-
38
- - uses: pnpm/action-setup@v4
39
- with:
40
- version: 9
41
-
42
- - uses: actions/setup-node@v4
43
- with:
44
- node-version: '20'
45
- cache: 'pnpm'
46
- registry-url: 'https://registry.npmjs.org'
47
-
48
- - run: pnpm install --no-frozen-lockfile --ignore-scripts
49
-
50
- - name: Verify NPM_TOKEN
51
- run: |
52
- if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
53
- echo "NPM_TOKEN is empty!"
54
- exit 1
55
- fi
56
- echo "NPM_TOKEN length: ${#NPM_TOKEN}"
57
- env:
58
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
59
-
60
- - name: Publish to npm
61
- run: npm publish
62
- env:
63
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.husky/pre-commit DELETED
@@ -1 +0,0 @@
1
- npx lint-staged
package/.mcp.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "mcpServers": {
3
- "deepspider": {
4
- "command": "node",
5
- "args": ["src/mcp/server.js"]
6
- }
7
- }
8
- }
@@ -1,65 +0,0 @@
1
- {
2
- ".trellis/scripts/add-session.sh": "5e8e4ebf9e85684c130e636b67c6def49bab4aa6e4e303d591173b1797e82c37",
3
- ".trellis/scripts/common/developer.sh": "fac965c73fa93cb9656f1fdda71dc525ac53309fc702f306f68a4914fc0d5788",
4
- ".trellis/scripts/common/git-context.sh": "c0fb34d6f71b6e22b2938a4143fa3053b4ecc5fbaa144281c4cd2fce2a9837f0",
5
- ".trellis/scripts/common/paths.sh": "c2b38f795668071e40b4fb817f1f710d61db76b38d09e1f47d71573d4ee7475a",
6
- ".trellis/scripts/common/phase.sh": "08ab369480d3a3c226de8ecf084dc34c297c27950ebcb2aa2bc8df1cec686288",
7
- ".trellis/scripts/common/registry.sh": "2bf06ca0b100aa960e14590fb2c41c5aa1c40f156a406429757da038e92ead65",
8
- ".trellis/scripts/common/task-queue.sh": "fbc168ee801a5986e8bd5ec6cfceb7384c2d93a9985f9c37f35c238b8d633ea9",
9
- ".trellis/scripts/common/task-utils.sh": "8ad2ee44df470183f536319f88b446dc603e3fddcdd1b71396960d8dd52045ea",
10
- ".trellis/scripts/common/worktree.sh": "7a420eecab9dfe361bea1b0a5cb9ce4b42b984fbffb570a75e2d9ac59f4b569d",
11
- ".trellis/scripts/create-bootstrap.sh": "388905f88cf89035005eff84ae3828fdd4936707481ba702c08c6a206117b205",
12
- ".trellis/scripts/get-context.sh": "e42bcf4b167b1d322b069d795110e4947cab4073e495be285ed7a9b8c1a3d728",
13
- ".trellis/scripts/get-developer.sh": "82f62484fceef79954bb8aa77588789c476b7187bf0ff48d355d50108425dc67",
14
- ".trellis/scripts/init-developer.sh": "34bbd2db4198196ec3297116ff0d8455b2af32ec6a297c978bdf8cb5abffa2f8",
15
- ".trellis/scripts/multi-agent/cleanup.sh": "205993cc945ed2224ec45fa51e55f18624a6a7743fcfd44090308b1099bcb87b",
16
- ".trellis/scripts/multi-agent/create-pr.sh": "0818c371031eed810e404997c10713ab685ca5eb4b5815f9a646ad1e5862e96c",
17
- ".trellis/scripts/multi-agent/plan.sh": "a2349c913314561349b92e506962b9ef9c716f61ee310a18b2fc53cde3ddf04d",
18
- ".trellis/scripts/multi-agent/start.sh": "feca8869f5eb305a9d1609672ce121e24cfd3ac8d000018857ca917f14dc98a0",
19
- ".trellis/scripts/multi-agent/status.sh": "00a422b73d4dc8e05afdd3a310fd4c36266201550ad23383151be8efa808af7b",
20
- ".trellis/scripts/task.sh": "806ec3b6ebb7d046016d907ccd6546c534653291b791d02b755d901f6d930bb2",
21
- ".trellis/spec/guides/code-reuse-thinking-guide.md": "e768d4937198ccfacfb927a27e6ee731766a7dd2de0d770a3d7293ea6e3f19d5",
22
- ".trellis/spec/guides/cross-layer-thinking-guide.md": "b89b09d8356f9985a838613d425e15e97bd4b5b9e8640cfe0c941d97fb152ef6",
23
- ".trellis/spec/guides/index.md": "c41ea8dd33dc9ae01b376f2bf66c6b2f80e699d84a895ca87d55c7a44368d2d5",
24
- ".trellis/workflow.md": "3eb1408d68456fc3dd799899997245d1c096e705db6164fe26479dbdff275114",
25
- ".trellis/worktree.yaml": "c57de79e40d5f748f099625ed4a17d5f0afbf25cac598aced0b3c964e7b7c226",
26
- ".claude/agents/check.md": "7c7400e7ea8bf3f3f879bfa028fd5b4d41673e0150d44c52292161ba33612812",
27
- ".claude/agents/debug.md": "94be0b1cfbae4c64caee4775ef504f43acfcd4a80427a26d6f680ceaddcbee24",
28
- ".claude/agents/dispatch.md": "1f26bf7dc26f739ea50ce7a662b1b8df65a18d6289584383ca6c3f1ba5559a72",
29
- ".claude/agents/implement.md": "026b2193f4de057dbe1e5e0559b8a2c2ebb6c7bcdcd24e810287c35819a33db3",
30
- ".claude/agents/plan.md": "077cc6f9d40563b9e4814308578c2596806e7a0dee1e7fbd9ddc5e98c2287b10",
31
- ".claude/agents/research.md": "086ae23120151b3591089a4de20fd54e6ae2b89038f5903ee9a52269cd7ded6a",
32
- ".claude/commands/trellis/before-backend-dev.md": "7e35444de2a5779ef39944f17f566ea21d2ed7f4994246f4cfe6ebf9a11dd3e3",
33
- ".claude/commands/trellis/before-frontend-dev.md": "a6225f9d123dbd4a7aec822652030cae50be3f5b308297015e04d42b23a27b2a",
34
- ".claude/commands/trellis/break-loop.md": "24d07ac0ac1873cb7adf5228c597e58a58125d80fc1e8d2eb5d6948c43761566",
35
- ".claude/commands/trellis/check-backend.md": "4e81a28d681ea770f780df55a212fd504ce21ee49b44ba16023b74b5c243cef3",
36
- ".claude/commands/trellis/check-cross-layer.md": "b9ab24515ead84330d6634f6ad912ca3547db3a36139d62c5688161824097d60",
37
- ".claude/commands/trellis/check-frontend.md": "5e8e3b682032ba0dd6bb843dd4826fff0159f78a7084964ccb119c6cf98b3d91",
38
- ".claude/commands/trellis/create-command.md": "c2825c7941b4ef4a3f3365c4c807ff138096a39aece3d051776f3c11a4e4857d",
39
- ".claude/commands/trellis/finish-work.md": "6a29961bd1ee55b79bfb44bce637275e4646317a3ac4a6cc77ba28c19d18ff80",
40
- ".claude/commands/trellis/integrate-skill.md": "d141fd8b045c6ef27b1716c0135143879736a6cb232c56b72b4e42fd4d7effb4",
41
- ".claude/commands/trellis/onboard.md": "02d219d8cde3785f79270febf5d03039e8b8052dc95341f9a6b582fb5c433ee0",
42
- ".claude/commands/trellis/parallel.md": "e97ebff92fbe8959ea522530cbef1840e637c62813cf57516edeceecd84eb25e",
43
- ".claude/commands/trellis/record-session.md": "bbb8140082f51128ed5b20eaead97ff084c10eafd52b5763acc879cde77a9351",
44
- ".claude/commands/trellis/start.md": "3b00f04b7ccf16df0ddb87b9f3ca179ebcf45e79fdd7fbf4add1f6896a522216",
45
- ".claude/commands/trellis/update-spec.md": "c8e259d66fa7223c9ab99fede83de3e5c39fb16d956ca9a3ab1f749fb1956390",
46
- ".claude/hooks/inject-subagent-context.py": "3cc16fd8c6c8eb232e33538080ee7c00ee3b613df454a87da86d1856e48f2c2c",
47
- ".claude/hooks/ralph-loop.py": "fd2b8cb40cbaa6428e7d1a9a89189c9481e2279165ee5b7fa5d1dd1d42b02662",
48
- ".claude/hooks/session-start.py": "67b5fc4ab01b74d0352e12af5f99eada48996a88fb188216cc741e94b619894a",
49
- ".claude/settings.json": "f03439ad594adb545fdeeb7cf564726d35972d37c73e5c632f6c64a4d1fed7c9",
50
- ".claude/settings.local.json": "f2a6ec4081ab0412a25b049a822fb9b94f6260d36fed87a5d64bdd680cf9a577",
51
- ".claude/skills/deepagents-guide/SKILL.md": "6f4e0ac61f18cfba2338f06190094c7234641b092d447e384d503d2046871f6b",
52
- ".cursor/commands/trellis-before-backend-dev.md": "7e35444de2a5779ef39944f17f566ea21d2ed7f4994246f4cfe6ebf9a11dd3e3",
53
- ".cursor/commands/trellis-before-frontend-dev.md": "a6225f9d123dbd4a7aec822652030cae50be3f5b308297015e04d42b23a27b2a",
54
- ".cursor/commands/trellis-break-loop.md": "24d07ac0ac1873cb7adf5228c597e58a58125d80fc1e8d2eb5d6948c43761566",
55
- ".cursor/commands/trellis-check-backend.md": "4e81a28d681ea770f780df55a212fd504ce21ee49b44ba16023b74b5c243cef3",
56
- ".cursor/commands/trellis-check-cross-layer.md": "a79fe38f29f84a4524a70987e9fecfca569430df476082bff9dde31596ca3951",
57
- ".cursor/commands/trellis-check-frontend.md": "5e8e3b682032ba0dd6bb843dd4826fff0159f78a7084964ccb119c6cf98b3d91",
58
- ".cursor/commands/trellis-create-command.md": "9a9283add72832e0e015de770531edf37cf3720e4a72782c1cea6e9941603490",
59
- ".cursor/commands/trellis-finish-work.md": "a91678f24c494775486e1462c7aeea611fde386b6dbd6fecd0d75a5fbe965de6",
60
- ".cursor/commands/trellis-integrate-skill.md": "b200ce1087679bcedf508aeeb085c82549ab1232d8f01d95ff276aa5d1a24548",
61
- ".cursor/commands/trellis-onboard.md": "d0bf3049e8be3a3c374587525eb574eef8ac47efe22bfa7b5daead7b9f07a778",
62
- ".cursor/commands/trellis-record-session.md": "bbb8140082f51128ed5b20eaead97ff084c10eafd52b5763acc879cde77a9351",
63
- ".cursor/commands/trellis-start.md": "91653b5216c58617a98d8c332937fd99534083a10cd22d6a782f7fe4053f5a15",
64
- ".cursor/commands/trellis-update-spec.md": "008df54aa9b43d94dbc5107452628cac6cf18fb93bf801f8944f4a89904d066a"
65
- }
package/.trellis/.version DELETED
@@ -1 +0,0 @@
1
- 0.2.11