@link-assistant/hive-mind 1.34.7 → 1.34.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 1.34.8
4
+
5
+ ### Patch Changes
6
+
7
+ - c95a472: Add test timeout guidelines to system prompt and case study documentation
8
+ - Added guidelines for setting reasonable test timeouts in CI/CD pipelines
9
+ - Created comprehensive case study in docs/case-studies/issue-1197/
10
+ - Recommendations include: 5-30s for unit tests, 30-60s for E2E tests
11
+ - Guidelines for job-level workflow timeouts and fail-fast patterns
12
+
3
13
  ## 1.34.7
4
14
 
5
15
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "1.34.7",
3
+ "version": "1.34.8",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",
@@ -172,6 +172,8 @@ Solution development and testing.
172
172
  write unit tests with mocks for easy and quick start.
173
173
  - When you test integrations, use existing framework.
174
174
  - When you test solution draft, include automated checks in pr.
175
+ - When you write or modify tests, consider setting reasonable timeouts at test, suite, and CI job levels so failures surface quickly instead of hanging.
176
+ - When you see repeated test timeout patterns in CI, investigate the root cause rather than increasing timeouts.
175
177
  - When issue is unclear, write comment on issue asking questions.
176
178
  - When you encounter any problems that you unable to solve yourself, write a comment to the pull request asking for help.
177
179
  - When you need human help, use gh pr comment ${prNumber} --body "your message" to comment on existing PR.
@@ -215,6 +215,8 @@ Solution development and testing.
215
215
  write unit tests with mocks for easy and quick start.
216
216
  - When you test integrations, use existing framework.
217
217
  - When you test solution draft, include automated checks in pr.
218
+ - When you write or modify tests, consider setting reasonable timeouts at test, suite, and CI job levels so failures surface quickly instead of hanging.
219
+ - When you see repeated test timeout patterns in CI, investigate the root cause rather than increasing timeouts.
218
220
  - When issue is unclear, write comment on issue asking questions.
219
221
  - When you encounter any problems that you unable to solve yourself (any human feedback or help), write a comment to the pull request asking for help.
220
222
  - When you need human help, use gh pr comment ${prNumber} --body "your message" to comment on existing PR.
@@ -181,6 +181,8 @@ Solution development and testing.
181
181
  write unit tests with mocks for easy and quick start.
182
182
  - When you test integrations, use existing framework.
183
183
  - When you test solution draft, include automated checks in pr.
184
+ - When you write or modify tests, consider setting reasonable timeouts at test, suite, and CI job levels so failures surface quickly instead of hanging.
185
+ - When you see repeated test timeout patterns in CI, investigate the root cause rather than increasing timeouts.
184
186
  - When issue is unclear, write comment on issue asking questions.
185
187
  - When you encounter any problems that you unable to solve yourself (any human feedback or help), write a comment to the pull request asking for help.
186
188
  - When you need human help, use gh pr comment ${prNumber} --body "your message" to comment on existing PR.
@@ -175,6 +175,8 @@ Solution development and testing.
175
175
  write unit tests with mocks for easy and quick start.
176
176
  - When you test integrations, use existing framework.
177
177
  - When you test solution draft, include automated checks in pr.
178
+ - When you write or modify tests, consider setting reasonable timeouts at test, suite, and CI job levels so failures surface quickly instead of hanging.
179
+ - When you see repeated test timeout patterns in CI, investigate the root cause rather than increasing timeouts.
178
180
  - When issue is unclear, write comment on issue asking questions.
179
181
  - When you encounter any problems that you unable to solve yourself, write a comment to the pull request asking for help.
180
182
  - When you need human help, use gh pr comment ${prNumber} --body "your message" to comment on existing PR.