Agent Skills: Project Core Dev

Generic core-dev overlay for repo-owned C++ code, tests, and top-level CMake changes.

UncategorizedID: n-n-code/cpp-agentic-development-frame/project-core-dev

Install this agent skill to your local

pnpm dlx add-skill https://github.com/n-n-code/cpp-agentic-development-frame/tree/HEAD/.agents/skills/project-core-dev

Skill Files

Browse the full folder contents for project-core-dev.

Download Skill

Loading file tree…

.agents/skills/project-core-dev/SKILL.md

Skill Metadata

Name
project-core-dev
Description
Overlay for day-to-day feature work and bug fixes in repo-owned code. Provides a validation checklist for build, test, format, and analysis. Use alongside the repo's principle skill.

Project Core Dev

Read AGENTS.md first. This is a composable overlay, not a standalone workflow. Use alongside the repo's principle skill (e.g. coding-guidance-cpp) for normal feature work and bug fixes in repo-owned code.

When to use

The task is a feature, bug fix, or refactor in repo-owned code that needs a standard build-test-format-analyze validation pass.

Not for

Vendored dependency changes (use project-vendor-boundary), release/packaging work (use project-release-maintainer), config/test-focused work (use project-config-and-tests), or environment diagnosis (use project-platform-diagnose).

Validation Checklist

Run the repo's equivalents of these steps before committing:

  • build with the development preset or debug configuration
  • run the test suite with output on failure for covered changes
  • run the formatter or format-check target
  • run a lightweight smoke test (e.g. --help or --version on the main binary)
  • add analyzer, sanitizer, or memory-checking validation when the change surface justifies it
  • run static analysis targets when available