fullstack-developer

Full-stack web development guidance covering React interfaces, Node.js servers, databases, and application architecture. It emphasizes typed code, input validation, consistent errors, and separating different parts of an application.

In plain words
What is it for?
Use it to build frontends, APIs, database-backed applications, and deployments involving technologies such as React, Next.js, Express, REST, GraphQL, MongoDB, or PostgreSQL.
Why use it?
It helps prevent common problems such as accepting invalid request data, returning inconsistent errors, or mixing unrelated responsibilities. It gives a repeatable structure for building web features end to end.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/medy-gribkov/arcana/fullstack-developer
Any agent
npx skills add medy-gribkov/arcana --skill fullstack-developer
Clone the repo
git clone --depth 1 https://github.com/medy-gribkov/arcana

Made for: Claude Code, Codex.

Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,700 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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 $0.00072 $0.01700
Opus 5 $0.00036 $0.00850
Sonnet 5 $0.00014 $0.00340
Haiku 4.5 $0.00007 $0.00170

Measured yesterday against content hash 61f9b994b34f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fullstack-developer scanned grade A with 0 findings 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 yesterday.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fullstack-developer/SKILL.md · 241 lines

How it starts

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

Full-Stack Developer

Act as a senior full-stack engineer. Write type-safe, production-ready code with proper error handling, validation, and separation of concerns.

API Design Workflow

Follow these steps when building any API endpoint.

  1. Define the route, HTTP method, and response shape first
  2. Create a Zod schema for request validation
  3. Implement the handler with typed request/response
  4. Add error handling that returns consistent JSON
  5. Write the corresponding client-side fetch hook

BAD: Unvalidated, untyped handler

// No validation, raw any types, inconsistent errors
app.post("/api/posts", async (req, res) => {
  const post = await db.post.create({ data: req.body });
  res.json(post);
});

GOOD: Validated, typed, consistent errors

import { z } from "zod";

const CreatePostSchema = z.object({
  title: z.string().min(1).max(200),
  content: z.string().min(1),
  published: z.boolean().default(false),
});

type CreatePostInput = z.infer<typeof CreatePostSchema>;

app.post("/api/posts", async (req: Request, res: Response) => {
  const result = CreatePostSchema.safeParse(req.body);
  if (!result.success) {
    return res.status(422).json({
      error: "Validation failed",
      details: result.error.flatten().fieldErrors,
    });
  }

  const post = await prisma.post.create({ data: result.data });
  return res.status(201).json({ data: post });
});

Error Response Shape

Every error response must follow this structure:

interface ApiError {
  error: string;
  code?: string;
  details?: Record<string, string[]>;
}

Map status codes consistently:

  • 201 after successful creation
  • 204 after successful deletion (no body)
  • 400 malformed request, 422 valid JSON but failed validation
  • 401 missing auth, 403 insufficient permissions
  • 409 conflict (duplicate unique field)
  • 429 rate limited

React Component Patterns

Follow these steps when building any component.

  1. Define the props interface with explicit types
  2. Handle all states: loading, error, empty, success
  3. Extract data fetching into custom hooks
  4. Keep components under 80 lines. Split if larger
  5. Co-locate types, hooks, and tests with the component

Read the full file on GitHub · 241 lines

Files

What ships with it

2 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. yesterday First seen · 241 lines · 0 tokens per session scan A 61f9b994b34f

Subscribe to this mod's changes

fullstack-developer is a skill published in the GitHub repository medy-gribkov/arcana (1 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 72 tokens to every session and 1,700 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

ultimate-seo-geo

Audits and optimizes websites for search engine visibility (SEO) and AI search citation (GEO), covering technical health, E-E-A-T content scoring, domain authority, structured data, rich results, and entity signals. Use when running SEO audits, diagnosing traffic drops or ranking losses, generating Schema.org JSON-LD…

mykpono/ultimate-seo-geo · 144 tokens

neo-stop-slop

Use this skill when the user wants to polish, rewrite, shorten, or review prose so it sounds natural rather than AI-generated. Trigger for Traditional Chinese or English drafts, rough notes, source material, articles, technical docs, code comments, commit messages, PR descriptions, sales copy, or requests to remove AI…

Benknightdark/neo-skills · 80 tokens

neo-iso-27001

Use this skill when the user needs to establish, review, or improve an ISO/IEC 27001 ISMS, perform information security risk discovery, define scope, create an evidence matrix, conduct a gap analysis, draft a Statement of Applicability, prepare for an internal audit, or create an improvement plan. Use neo-iso-27701…

Benknightdark/neo-skills · 103 tokens

neo-iso-27701

Use this skill when the user needs to establish, review, or improve an ISO/IEC 27701 PIMS, inventory PII processing, analyze controller and processor responsibilities, create a privacy risk or evidence matrix, conduct a gap analysis, prepare for an audit, or create an improvement plan. Use neo-iso-27001 when the main…

Benknightdark/neo-skills · 102 tokens

neo-azure-pipelines

Use this skill when the user asks to create, review, debug, or modernize Azure Pipelines YAML for CI/CD, especially .NET builds, Azure App Service deploys, or IIS/on-premises deploys. Prefer bundled templates and verify task syntax against Microsoft docs when version-specific accuracy matters.

Benknightdark/neo-skills · 66 tokens

neo-clean-architecture

Use this skill when the user wants to design, implement, review, or refactor software systems conforming to Clean Architecture principles. It structures code into Domain, Application, Infrastructure, and Presentation/API layers, enforcing inward-only dependencies. It advocates rich domain models, CQRS, and the Result…

Benknightdark/neo-skills · 76 tokens