fullstack-dev

fullstack-dev is a skill for Claude Code, Codex from HK-hub/AgentSkills. It costs 133 tokens per session (8,435 once invoked), scanned A, a copy of fullstack-dev, MIT.

A full-stack development skill for planning and building applications with a frontend, backend service, API, and database. Full-stack means the user interface and server-side parts are developed together.

In plain words
What is it for?
Use it for CRUD apps, REST APIs, chat and real-time applications, backend services, and frontend-backend integrations.
Why use it?
It helps resolve important architecture choices early, such as the project structure, API style, database, authentication, and real-time communication.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for CRUD apps, REST APIs, chat and real-time applications, backend services, and frontend-backend integrations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hk-hub/agentskills/fullstack-dev
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add HK-hub/AgentSkills --skill fullstack-dev
Clone the repo
git clone --depth 1 https://github.com/HK-hub/AgentSkills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fullstack-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/hk-hub/agentskills/fullstack-dev.svg)](https://agentmods.dev/skills/hk-hub/agentskills/fullstack-dev)
Your own site
<a href="https://agentmods.dev/skills/hk-hub/agentskills/fullstack-dev"><img src="https://agentmods.dev/badge/skills/hk-hub/agentskills/fullstack-dev.svg" alt="Measured on agentmods" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,435 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00133 $0.08435
Opus 5 $0.00067 $0.04217
Sonnet 5 $0.00027 $0.01687
Haiku 4.5 $0.00013 $0.00843

Measured 3d ago against content hash 94d2f5b38596, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

fullstack-dev scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl http://localhost:3000/health
Origin

This is a copy

100% identical to fullstack-dev — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

fullstack-dev/SKILL.md · 1,038 lines

How it starts

The opening of the file, as written. The whole thing — 1,038 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Full-Stack Development Practices

MANDATORY WORKFLOW — Follow These Steps In Order

When this skill is triggered, you MUST follow this workflow before writing any code.

Step 0: Gather Requirements

Before scaffolding anything, ask the user to clarify (or infer from context):

  1. Stack: Language/framework for backend and frontend (e.g., Express + React, Django + Vue, Go + HTMX)
  2. Service type: API-only, full-stack monolith, or microservice?
  3. Database: SQL (PostgreSQL, SQLite, MySQL) or NoSQL (MongoDB, Redis)?
  4. Integration: REST, GraphQL, tRPC, or gRPC?
  5. Real-time: Needed? If yes — SSE, WebSocket, or polling?
  6. Auth: Needed? If yes — JWT, session, OAuth, or third-party (Clerk, Auth.js)?

If the user has already specified these in their request, skip asking and proceed.

Step 1: Architectural Decisions

Based on requirements, make and state these decisions before coding:

Decision Options Reference
Project structure Feature-first (recommended) vs layer-first Section 1
API client approach Typed fetch / React Query / tRPC / OpenAPI codegen Section 5
Auth strategy JWT + refresh / session / third-party Section 6
Real-time method Polling / SSE / WebSocket Section 11
Error handling Typed error hierarchy + global handler Section 3

Briefly explain each choice (1 sentence per decision).

Step 2: Scaffold with Checklist

Use the appropriate checklist below. Ensure ALL checked items are implemented — do not skip any.

Step 3: Implement Following Patterns

Write code following the patterns in this document. Reference specific sections as you implement each part.

Step 4: Test & Verify

After implementation, run these checks before claiming completion:

  1. Build check: Ensure both backend and frontend compile without errors
    # Backend
    cd server && npm run build
    # Frontend
    cd client && npm run build
    
  2. Start & smoke test: Start the server, verify key endpoints return expected responses
    # Start server, then test
    curl http://localhost:3000/health
    curl http://localhost:3000/api/<resource>
    
  3. Integration check: Verify frontend can connect to backend (CORS, API base URL, auth flow)
  4. Real-time check (if applicable): Open two browser tabs, verify changes sync

Read the full file on GitHub · 1,038 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 1,038 lines · 133 tokens per session scan A 94d2f5b38596

Subscribe to this mod's changes

fullstack-dev is a skill published in the GitHub repository HK-hub/AgentSkills (6 stars, last pushed 20d ago), licensed MIT. It adds 133 tokens to every session and 8,435 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to fullstack-dev, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

add-tauri-command

Use when adding a new Tauri command to Cowork-Z — a new backend capability the React frontend must call, a new #[tauri::command] fn, or a new invoke() wrapper in tauri-api.ts. Also use when a newly written command returns "Command not found" at runtime.

kevinlin/cowork-z · 69 tokens

prd-to-app

Build a complete, production-ready full-stack web application from PRD documents, prototype images, and resource files. Handles the entire pipeline: system design, database schema, seed data, backend API, frontend UI, visual verification against prototypes, and deployment script generation. Use this skill whenever the…

bestdeejay-design/agent-skills · 166 tokens

web-development

Architect, build, debug, review, optimize, and ship production websites, web apps, APIs, plugins, themes, and integrations across WordPress, WooCommerce, Elementor, React, Next.js, Node.js, TypeScript, databases, caching, deployment, SEO, accessibility, performance, and build tooling. Use for any implementation…

prangishviliAbe/agent-skills · 113 tokens

searchpo-agent-capabilities

Use when Searchpo agents need to inspect available .env keys, provider/API capabilities, DeepWiki MCP availability, credential routing, side-effect boundaries, or decide which agent should use which external service without exposing secrets.

SunflowersLwtech/sunkit · 48 tokens

search-harness

Domain knowledge for designing a search harness for coding agents — search API landscape, ground-API pipeline/strategy, CLI + skills architecture, and roadmap. Use when discussing search agent infrastructure, choosing search APIs for agents, designing search pipelines, or reviewing the search-harness project direction.

SunflowersLwtech/sunkit · 60 tokens

coding-standards

Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.

khanhhuyenngo985-sys/character-scene-design-skills · 28 tokens