One-click install
npx skills add https://github.com/JabezJesudasonJena/hack-ag --skill develop-jabezjesudasonjena
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: develop
Source: https://github.com/JabezJesudasonJena/hack-ag/tree/main/.agents/skills/develop
Command: npx skills add https://github.com/JabezJesudasonJena/hack-ag --skill develop-jabezjesudasonjena

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Turning an approved design or architecture spec into working code often means re-deciding things that were already settled, inventing load bearing choices mid build, or losing track of progress across sessions. This Skill gates every build on a recorded spec, then implements the feature (UI, backend logic, or both) while tracking scope status so work is resumable and never silently diverges from the decision. ## Core Features & Use Cases - Spec gate before building: Checks that every value the build must produce has a named source in the spec; if a load bearing decision is missing, it routes to the architect flow or records an assumed spec instead of guessing. - Dual build tracks: A UI track covering design systems, tokens, semantic HTML, accessibility, and responsive states, plus a logical track covering data layers, migrations, APIs, authorization, idempotency, and integrations. - Scope and spec lifecycle management: Advances feature status in scope files, ticks build plan tasks, mirrors spec status transitions, and emits verify steps derived from acceptance criteria. - Use Case: A developer has an approved spec for an authentication feature. Run the develop command and it reads the spec and project conventions, builds the sign in pages plus session logic, applies the migration and confirms the schema is live, then updates the scope and offers verify steps. ## Quick Start Ask the agent to run /develop on a feature that already has an approved spec, for example: build the accounts sign in feature from its spec.

Frequently Asked Questions about develop

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build a feature from a spec with an AI agent?

Run the develop command naming the feature. The skill reads the governing spec and project conventions, classifies the work as UI, logical, or both, then builds the slice and updates the scope file with progress.

What happens if no spec exists for the feature I want to build?

The build stops at a spec gate. You choose to architect the decision first, proceed with no spec, or build now while recording an assumed spec that must be ratified later before the feature can be marked done.

Does this skill work with any frontend framework or styling setup?

Yes. It detects the framework (Next.js, Vite, Nuxt, Svelte) and the installed styling approach (Tailwind, shadcn, CSS modules, styled components) and follows the project's own conventions rather than imposing new ones.

Can it resume a half finished feature build?

Yes. Progress is tracked in the spec's build plan and the scope file, so rerunning the command finds the first unchecked task and resumes there instead of rebuilding completed work.

When should I not use this skill?

Do not use it when no project skeleton exists yet (run the scaffold step first) or when a load bearing decision like an auth provider or data model is still undecided, since those belong to the architecture step.