agents-standards
Standards for authoring SDD plugin agents — frontmatter, self-containment, skill references, and no-user-interaction rules.
Scaffolds integration test suite structure with database setup, API testing, and Testkube configuration.
$ npx -y skills add LiorCohen/sdd --skill integration-testing-scaffolding --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/integration-testing-scaffoldingContext preview
The summary Claude sees to decide when to auto-load this skill.
Scaffolds integration test suite structure with database setup, API testing, and Testkube configuration.
name: integration-testing-scaffolding description: Scaffolds integration test suite structure with database setup, API testing, and Testkube configuration. user-invocable: false
Scaffolds an integration testing component with test infrastructure for verifying component interactions against real dependencies.
Invoked by the scaffolding orchestrator with:
components/testing/integration/{name}/
├── src/
│ ├── setup/
│ │ ├── test-database.ts # Test database lifecycle
│ │ └── test-server.ts # Test server lifecycle
│ ├── helpers/
│ │ ├── api-client.ts # HTTP client for API testing
│ │ └── fixtures.ts # Test data factories
│ └── tests/
│ └── .gitkeep
├── vitest.config.ts
├── package.json
├── tsconfig.json
└── README.md1. Create the testing directory structure 2. Generate test setup files based on existing components:
3. Configure Vitest for integration test patterns 4. Generate Testkube test suite definition (if helm components exist) 5. Create README with testing conventions
Follow `integration-testing-standards` for test structure, database lifecycle, and naming conventions.
Returns a declared actions response with `register_component` action for the new integration testing component.
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.