@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.
- package/dist/adapter/client.d.ts.map +1 -1
- package/dist/adapter/client.js +2 -0
- package/dist/adapter/client.js.map +1 -1
- package/dist/config/init.d.ts +43 -2
- package/dist/config/init.d.ts.map +1 -1
- package/dist/config/init.js +389 -46
- package/dist/config/init.js.map +1 -1
- package/dist/index.d.ts +8 -13
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -9
- package/dist/index.js.map +1 -1
- package/dist/ralph/index.js +5 -5
- package/dist/ralph/index.js.map +1 -1
- package/dist/remote/bridge.d.ts +2 -0
- package/dist/remote/bridge.d.ts.map +1 -1
- package/dist/remote/bridge.js +34 -4
- package/dist/remote/bridge.js.map +1 -1
- package/dist/resolution.d.ts +13 -0
- package/dist/resolution.d.ts.map +1 -1
- package/dist/resolution.js +9 -1
- package/dist/resolution.js.map +1 -1
- package/dist/sharing/consult.d.ts +226 -0
- package/dist/sharing/consult.d.ts.map +1 -0
- package/dist/sharing/consult.js +818 -0
- package/dist/sharing/consult.js.map +1 -0
- package/dist/sharing/index.d.ts +2 -1
- package/dist/sharing/index.d.ts.map +1 -1
- package/dist/sharing/index.js +2 -1
- package/dist/sharing/index.js.map +1 -1
- package/package.json +207 -205
- package/templates/casting-history.json +4 -0
- package/templates/casting-policy.json +35 -0
- package/templates/casting-registry.json +3 -0
- package/templates/ceremonies.md +41 -0
- package/templates/charter.md +53 -0
- package/templates/constraint-tracking.md +38 -0
- package/templates/copilot-instructions.md +46 -0
- package/templates/history.md +10 -0
- package/templates/identity/now.md +9 -0
- package/templates/identity/wisdom.md +15 -0
- package/templates/mcp-config.md +98 -0
- package/templates/multi-agent-format.md +28 -0
- package/templates/orchestration-log.md +27 -0
- package/templates/plugin-marketplace.md +49 -0
- package/templates/raw-agent-output.md +37 -0
- package/templates/roster.md +60 -0
- package/templates/routing.md +54 -0
- package/templates/run-output.md +50 -0
- package/templates/scribe-charter.md +119 -0
- package/templates/skill.md +24 -0
- package/templates/skills/project-conventions/SKILL.md +56 -0
- package/templates/squad.agent.md +1146 -0
- package/templates/workflows/squad-ci.yml +24 -0
- package/templates/workflows/squad-docs.yml +50 -0
- package/templates/workflows/squad-heartbeat.yml +316 -0
- package/templates/workflows/squad-insider-release.yml +61 -0
- package/templates/workflows/squad-issue-assign.yml +161 -0
- package/templates/workflows/squad-label-enforce.yml +181 -0
- package/templates/workflows/squad-main-guard.yml +129 -0
- package/templates/workflows/squad-preview.yml +55 -0
- package/templates/workflows/squad-promote.yml +121 -0
- package/templates/workflows/squad-release.yml +77 -0
- package/templates/workflows/squad-triage.yml +260 -0
- 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.
|