agents-standards
Standards for authoring SDD plugin agents — frontmatter, self-containment, skill references, and no-user-interaction rules.
Component type definitions, settings schemas, directory patterns, and validation rules for the fullstack-typescript tech pack.
$ npx -y skills add LiorCohen/sdd --skill techpack-settings --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/techpack-settingsContext preview
The summary Claude sees to decide when to auto-load this skill.
Component type definitions, settings schemas, directory patterns, and validation rules for the fullstack-typescript tech pack.
name: techpack-settings description: Component type definitions, settings schemas, directory patterns, and validation rules for the fullstack-typescript tech pack. user-invocable: false
Component type definitions, settings schemas, directory patterns, and validation rules for the fullstack-typescript tech pack. This skill is loaded by core's `project-settings` skill to provide tech-pack-specific component knowledge.
---
| Type | Directory Pattern | Description | |------|-------------------|-------------| | `config` | `components/config` | Singleton configuration management | | `server` | `components/servers/{name}` | Node.js/Express backend (CMDO architecture) | | `webapp` | `components/webapps/{name}` | React/Vite frontend (MVVM architecture) | | `database` | `components/databases/{name}` | PostgreSQL database | | `contract` | `components/contracts/{name}` | OpenAPI 3.x specification | | `helm` | `components/helm_charts/{name}` | Kubernetes Helm chart | | `integration-testing` | `components/integration-testing` | Integration test suite | | `e2e-testing` | `components/e2e-testing` | E2E test suite (Playwright) | | `cicd` | `components/cicd` | CI/CD pipeline (GitHub Actions) |
---
| Setting | Type | Default | Description | |---------|------|---------|-------------| | `server_type` | `api\|worker\|cron\|hybrid` | `api` | Communication pattern(s) | | `modes` | `(api\|worker\|cron)[]` | — | For hybrid: which modes (2+ required) | | `databases` | string[] | `[]` | Database components this server uses | | `provides_contracts` | string[] | `[]` | Contracts this server implements | | `consumes_contracts` | string[] | `[]` | Contracts this server calls | | `helm` | boolean | `true` | Whether to generate helm chart |
**Impact:**
| Setting | Type | Default | Description | |---------|------|---------|-------------| | `contracts` | string[] | `[]` | Contracts this webapp uses | | `helm` | boolean | `true` | Whether to generate helm chart |
**Impact:**
| Setting | Type | Default | Description | |---------|------|---------|-------------| | `deploys` | string | — | Component to deploy (required) | | `deploy_type` | `server\|webapp` | — | Type being deployed (required) | | `deploy_modes` | `(api\|worker\|cron)[]` | — | For servers: which modes | | `ingress` | boolean | `true` | External HTTP access | | `assets` | `bundled\|entrypoint` | `bundled` | For webapps: asset strategy |
**Impact:**
| Setting | Type | Default | Description | |---------|------|---------|-------------| | `provider` | `postgresql` | `postgresql` | Database provider | | `dedicated` | boolean | `false` | Needs own DB server |
| Setting | Type | Default | Description | |---------|------|---------|-------------| | `visibility` | `public\|internal` | `internal` | External consumers allowed |
Config component has no settings (it is a singleton).
Testing components (integration-testing, e2e-testing) have no settings. Structure is driven by testing standards skills.
CI/CD component has no settings. Structure is driven by the cicd-standards skill.
---
1. **Config is a mandatory singleton** — every project must have exactly one `config` component. 2. **Database references must exist** — any name in a server's `databases` array must match an existing `database` component. 3. **Contract references must exist** — any name in `provides_contracts`, `consumes_contracts`, or `contracts` must match an existing `contract` component. 4. **Helm `deploys` must reference existing component** — the `deploys` field must reference an existing `server` or `webapp` component. 5. **Helm `deploy_modes` must be valid** — each mode in `deploy_modes` must be a valid mode for the referenced server's `server_type` (e.g., a server with `server_type: api` cannot have `deploy_modes: [worker]`).
---
---
This skill defines no input parameters or structured output.
Structure for AI-assisted development AI coding assistants are powerful but chaotic. You prompt, you get code, but then what?
Repo: LiorCohen/sdd
Standards for authoring SDD plugin agents — frontmatter, self-containment, skill references, and no-user-interaction rules.
Standards for authoring SDD plugin commands — frontmatter, user interaction, skill/agent invocation, CLI integration, and output formatting.
Create a commit following repository guidelines with proper versioning and changelog updates.
Two-step self-review at every task lifecycle phase. Step 1 (this skill) runs in-context to gather session signals — files read vs grepped, user pushback, build…
D2 diagramming language reference for architecture diagrams, sequence diagrams, grid layouts, SQL tables, and class diagrams. Produces .d2 files rendered via…
Writes and maintains user-facing documentation for the SDD plugin. Proactively detects when docs are out of sync with plugin capabilities.