agents-standards
Standards for authoring SDD plugin agents — frontmatter, self-containment, skill references, and no-user-interaction rules.
Standards and patterns for SDD configuration management.
$ npx -y skills add LiorCohen/sdd --skill config-standards --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/config-standardsContext preview
The summary Claude sees to decide when to auto-load this skill.
Standards and patterns for SDD configuration management.
name: config-standards description: Standards and patterns for SDD configuration management.
Standards and patterns for SDD configuration management.
1. **Single source of truth** - All config lives in `components/config/` 2. **Environment layering** - `envs/default/` → `envs/{env}/` merge order 3. **Minimal env vars** - Only `SDD_CONFIG_PATH` allowed for servers 4. **Secrets as references** - Config contains K8s Secret names, not values 5. **Fail fast** - Validate config at startup, crash on invalid 6. **Environment agnosticism** - Components never know which environment they're in
components/config/
├── package.json # Workspace package for type imports
├── tsconfig.json # TypeScript config
├── envs/
│ ├── default/
│ │ └── config.yaml # Base configuration (always merged first)
│ ├── local/
│ │ └── config.yaml # Local development overrides
│ ├── staging/
│ │ └── config.yaml # Staging overrides (add as needed)
│ └── production/
│ └── config.yaml # Production overrides (add as needed)
├── schemas/
│ └── config.schema.json # JSON Schema for validation
└── types/
├── index.ts # Re-exports all config types
└── {component}.ts # Per-component type definitions# Section names match component names task-service: # -> components/servers/task-service/ port: 3000 task-dashboard: # -> components/webapps/task-dashboard/ apiBaseUrl: /api taskdb: # -> components/databases/taskdb/ host: localhost
# envs/default/config.yaml
global: {} # Reserved for future cross-cutting concerns
# Each component gets a section matching its directory name
server-task-service:
port: 3000
probesPort: 9090
logLevel: info
database:
host: db.internal
port: 5432
name: taskdb
user: app
passwordSecret: task-service-db-credentials
pool: 10
webapp-task-dashboard:
apiBaseUrl: /api
features:
darkMode: true**Components are environment-agnostic.** Server, frontend, database, contract components never know which environment they're running in. They receive config values and use them.
**Only two places know about environments:** 1. `components/config/` - has `envs/local/`, `envs/production/`, etc. 2. `components/helm-*/` - has `values-local.yaml`, `values-production.yaml`, etc.
**A server component:**
Types are defined in `components/config/types/`:
// types/server.ts
export type ServerConfig = Readonly<{
port?: number;
probesPort?: number;
logLevel?: 'debug' | 'info' | 'warn' | 'error';
database?: Readonly<{
host?: string;
port?: number;
name?: string;
user?: string;
passwordSecret?: string;
pool?: number;
}>;
}>;Components import types via workspace package:
// In server component
import type { ServerConfig } from '@my-project/config/types';{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"global": { "type": "object" },
"server-task-service": {
"type": "object",
"properties": {
"port": { "type": "number" },
"logLevel": { "enum": ["debug", "info", "warn", "error"] }
}
}
}
}1. **Add config property** to `components/config/envs/default/config.yaml` 2. **Add override** (if needed) to `components/config/envs/local/config.yaml` 3. **Update schema** in `components/config/schemas/config.schema.json` 4. **Update types** in `components/config/types/{component}.ts` 5. **Generate merged config**:
/sdd I want to generate config
6. **Start server**:
SDD_CONFIG_PATH=./local-config.yaml npm start
Config contains secret **references** (K8s Secret names), not values:
# In config YAML
server-task-service:
database:
host: db.production.internal
passwordSecret: "task-service-db-credentials" # K8s Secret nameAt deploy time, Helm maps these references to actual secrets:
# In helm-task-service/templates/deployment.yaml
env:
- name: DB_PASSWORD
valueFrom:
secretKeyRef:
name: {{ .Values.config.database.passwordSecret }}
key: passwordThe application reads DB_PASSWORD from environment, not from config YAML.
Generated config files should be gitignored:
# Generated config files in server components (never commit) components/server-*/local-config.yaml components/server-*/*.schema.json
All `envs/` directories ARE committed - they contain references only.
NODE_ENV is an **infrastructure exception**, not application config. It exists because third-party libraries check it for optimizations.
**Application code NEVER reads NODE_ENV.** It's injected by Helm for library behavior only.
| Environment | NODE_ENV | Set By | |-------------|----------|--------| | Local dev | Not set | (libraries default to development) | | K8s staging | `development` | Helm values | | K8s production | `production` | Helm values |
1. **Required fields** - Schema can mark fields as required 2. **Type checking** - Schema validates types (string, number, object)
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.