shinpr

Agentic Code — Testing skill for Claude Code

Testing community

Agentic coding framework powered by AGENTS.md: systematic, test-first workflows with quality gates for Cursor, Codex, Gemini CLI, and AI coding agents.

How to install Agentic Code

This entry records only its repository, not the path inside it, so there is no exact command to give. Open shinpr/agentic-code and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agentic Code does

Agentic coding framework powered by AGENTS.md: systematic, test-first workflows with quality gates for Cursor, Codex, Gemini CLI, and AI coding agents.

Alternatives in Testing

  • Spec Kitty — Spec-Driven Development for serious software developers 1.6k ★
  • Spec Driven Develop — Spec-driven development workflow for AI coding agents: architecture-first planning, task decomposition, GitHub 975 ★
  • Fixtests — Systematic test failure analysis and remediation 849 ★

README

Agentic Code

A repository-resident development workflow for coding agents that read `AGENTS.md`.

Agentic Code adds an `AGENTS.md` entry point and a set of task, workflow, and skill files to a repository. The agent uses them to keep a well-scoped change on a direct path, route coordinated work through design and planning, load guidance only when it becomes relevant, and verify observable behavior before completion.

It does not generate an application by itself. It gives a coding agent a repeatable way to analyze, design, implement, test, and review changes in the repository where the files are installed.

[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE) [![AGENTS.md](https://img.shields.io/badge/AGENTS.md-compatible-blue.svg)](https://agents.md) [![Version](https://img.shields.io/badge/version-0.7.1-blue.svg)](package.json)

What It Provides

AGENTS.md                      Repository entry point and operating boundaries
.agents/tasks/                 Definitions for analysis, design, implementation, QA, and review
.agents/workflows/             Coordinated workflow for structurally Medium/Large work
.agents/skills/                Reusable implementation, testing, and documentation rules
.agents/context-maps/          Task-to-skill selection map

The route is based on decision burden rather than file count:

Scale Structural condition Route
Small One coherent outcome follows existing patterns within one responsibility boundary Direct task execution
Medium One coherent outcome coordinates across a boundary or requires a durable design decision Design and Work Plan before implementation
Large Multiple independently valuable outcomes require separate design decisions PRD, separate design decisions, and Work Plan

File paths and affected layers are still inspected, but they are evidence about the change surface rather than the scale formula.

Quick