@bradygaster/squad-sdk 0.8.17 → 0.8.19

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 (64) hide show
  1. package/dist/adapter/client.d.ts.map +1 -1
  2. package/dist/adapter/client.js +2 -0
  3. package/dist/adapter/client.js.map +1 -1
  4. package/dist/config/init.d.ts +43 -2
  5. package/dist/config/init.d.ts.map +1 -1
  6. package/dist/config/init.js +389 -46
  7. package/dist/config/init.js.map +1 -1
  8. package/dist/index.d.ts +8 -13
  9. package/dist/index.d.ts.map +1 -1
  10. package/dist/index.js +6 -9
  11. package/dist/index.js.map +1 -1
  12. package/dist/ralph/index.js +5 -5
  13. package/dist/ralph/index.js.map +1 -1
  14. package/dist/remote/bridge.d.ts +2 -0
  15. package/dist/remote/bridge.d.ts.map +1 -1
  16. package/dist/remote/bridge.js +34 -4
  17. package/dist/remote/bridge.js.map +1 -1
  18. package/dist/resolution.d.ts +13 -0
  19. package/dist/resolution.d.ts.map +1 -1
  20. package/dist/resolution.js +9 -1
  21. package/dist/resolution.js.map +1 -1
  22. package/dist/sharing/consult.d.ts +226 -0
  23. package/dist/sharing/consult.d.ts.map +1 -0
  24. package/dist/sharing/consult.js +818 -0
  25. package/dist/sharing/consult.js.map +1 -0
  26. package/dist/sharing/index.d.ts +2 -1
  27. package/dist/sharing/index.d.ts.map +1 -1
  28. package/dist/sharing/index.js +2 -1
  29. package/dist/sharing/index.js.map +1 -1
  30. package/package.json +207 -205
  31. package/templates/casting-history.json +4 -0
  32. package/templates/casting-policy.json +35 -0
  33. package/templates/casting-registry.json +3 -0
  34. package/templates/ceremonies.md +41 -0
  35. package/templates/charter.md +53 -0
  36. package/templates/constraint-tracking.md +38 -0
  37. package/templates/copilot-instructions.md +46 -0
  38. package/templates/history.md +10 -0
  39. package/templates/identity/now.md +9 -0
  40. package/templates/identity/wisdom.md +15 -0
  41. package/templates/mcp-config.md +98 -0
  42. package/templates/multi-agent-format.md +28 -0
  43. package/templates/orchestration-log.md +27 -0
  44. package/templates/plugin-marketplace.md +49 -0
  45. package/templates/raw-agent-output.md +37 -0
  46. package/templates/roster.md +60 -0
  47. package/templates/routing.md +54 -0
  48. package/templates/run-output.md +50 -0
  49. package/templates/scribe-charter.md +119 -0
  50. package/templates/skill.md +24 -0
  51. package/templates/skills/project-conventions/SKILL.md +56 -0
  52. package/templates/squad.agent.md +1146 -0
  53. package/templates/workflows/squad-ci.yml +24 -0
  54. package/templates/workflows/squad-docs.yml +50 -0
  55. package/templates/workflows/squad-heartbeat.yml +316 -0
  56. package/templates/workflows/squad-insider-release.yml +61 -0
  57. package/templates/workflows/squad-issue-assign.yml +161 -0
  58. package/templates/workflows/squad-label-enforce.yml +181 -0
  59. package/templates/workflows/squad-main-guard.yml +129 -0
  60. package/templates/workflows/squad-preview.yml +55 -0
  61. package/templates/workflows/squad-promote.yml +121 -0
  62. package/templates/workflows/squad-release.yml +77 -0
  63. package/templates/workflows/squad-triage.yml +260 -0
  64. package/templates/workflows/sync-squad-labels.yml +169 -0
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: "project-conventions"
3
+ description: "Core conventions and patterns for this codebase"
4
+ domain: "project-conventions"
5
+ confidence: "medium"
6
+ source: "template"
7
+ ---
8
+
9
+ ## Context
10
+
11
+ > **This is a starter template.** Replace the placeholder patterns below with your actual project conventions. Skills train agents on codebase-specific practices — accurate documentation here improves agent output quality.
12
+
13
+ ## Patterns
14
+
15
+ ### [Pattern Name]
16
+
17
+ Describe a key convention or practice used in this codebase. Be specific about what to do and why.
18
+
19
+ ### Error Handling
20
+
21
+ <!-- Example: How does your project handle errors? -->
22
+ <!-- - Use try/catch with specific error types? -->
23
+ <!-- - Log to a specific service? -->
24
+ <!-- - Return error objects vs throwing? -->
25
+
26
+ ### Testing
27
+
28
+ <!-- Example: What test framework? Where do tests live? How to run them? -->
29
+ <!-- - Test framework: Jest/Vitest/node:test/etc. -->
30
+ <!-- - Test location: test/, __tests__/, *.test.ts, etc. -->
31
+ <!-- - Run command: npm test, etc. -->
32
+
33
+ ### Code Style
34
+
35
+ <!-- Example: Linting, formatting, naming conventions -->
36
+ <!-- - Linter: ESLint config? -->
37
+ <!-- - Formatter: Prettier? -->
38
+ <!-- - Naming: camelCase, snake_case, etc.? -->
39
+
40
+ ### File Structure
41
+
42
+ <!-- Example: How is the project organized? -->
43
+ <!-- - src/ — Source code -->
44
+ <!-- - test/ — Tests -->
45
+ <!-- - docs/ — Documentation -->
46
+
47
+ ## Examples
48
+
49
+ ```
50
+ // Add code examples that demonstrate your conventions
51
+ ```
52
+
53
+ ## Anti-Patterns
54
+
55
+ <!-- List things to avoid in this codebase -->
56
+ - **[Anti-pattern]** — Explanation of what not to do and why.