agents-standards
Standards for authoring SDD plugin agents — frontmatter, self-containment, skill references, and no-user-interaction rules.
Scaffolds CI/CD pipeline definitions using GitHub Actions for build, test, lint, and deploy workflows.
$ npx -y skills add LiorCohen/sdd --skill cicd-scaffolding --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/cicd-scaffoldingContext preview
The summary Claude sees to decide when to auto-load this skill.
Scaffolds CI/CD pipeline definitions using GitHub Actions for build, test, lint, and deploy workflows.
name: cicd-scaffolding description: Scaffolds CI/CD pipeline definitions using GitHub Actions for build, test, lint, and deploy workflows. user-invocable: false
Scaffolds a CI/CD pipeline component using GitHub Actions.
Invoked by the scaffolding orchestrator with:
components/cicd/ ├── .github/ │ └── workflows/ │ ├── ci.yaml # Build + test + lint on PR │ ├── cd.yaml # Deploy on merge to main │ └── release.yaml # Release workflow ├── scripts/ │ ├── build.sh │ └── deploy.sh └── README.md
1. Create `components/cicd/` directory 2. Generate GitHub Actions workflow files based on existing components:
3. Create helper scripts in `scripts/` 4. Generate README with pipeline documentation
Follow `cicd-standards` for workflow structure and naming conventions.
Returns a declared actions response with `register_component` action for the new CI/CD 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.