From azzist
Scaffold a new project OR refactor an existing one to azzist standards. Serves as the base architecture layer for frontend, backend, database, cache, and queue services. v1 templates: Nuxt 3 (web). Use when the user wants to create a new project, says "azzist scaffold", OR when an existing project does not meet best-practice structure and needs to be aligned.
How this skill is triggered — by the user, by Claude, or both
Slash command
/azzist:azzist-scaffoldThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Two modes: **create** (new project from template) or **refactor** (align existing project to
Two modes: create (new project from template) or refactor (align existing project to azzist conventions). Both end with a locally-verified, deployable codebase.
If uncertain, ask the user: "Start fresh or refactor existing code?"
project.stack from azzist.yaml)Conventions are fixed — do not substitute without the user asking:
| Service | Stack | Status |
|---|---|---|
| Web / landing | Nuxt 3 | v1 ready |
| Backend API | Go | planned |
| Worker / background | Go + GoFiber | planned |
| Data / ML | Python | planned |
| Database | Postgres | supported |
| Cache / queue | Redis | supported |
| Packaging | Dockerfile per svc | all stacks |
For unimplemented stacks (go/gofiber/python), tell the user it is planned and scaffold the directory structure + placeholder Dockerfile manually based on the conventions table.
${CLAUDE_PLUGIN_ROOT}/templates/nuxt/ into the project root (or ./app/ per user
preference). Copy ${CLAUDE_PLUGIN_ROOT}/templates/Dockerfile.nuxt → Dockerfile.npm install.npm run dev, confirm http://localhost:3000, then stop. Fix before proceeding.When azzist-analyze (or the user) flags that existing code doesn't meet standards, refactor to align it. Principles:
/healthz and /readyz.nuxt.config.ts (not .js), Nitro output, non-root user in Dockerfile,
NITRO_PORT=3000. Static nuxt generate is NOT acceptable for server-rendered deploys.cmd/<app>/main.go entry, internal/ for private packages, no init() side
effects, structured logger (slog or zerolog), /healthz + /readyz HTTP handlers.pyproject.toml with [build-system], src/ layout, uvicorn/gunicorn
entrypoint, health endpoints.DATABASE_URL. Migrations
tracked (sql files or a migration tool). No ORM magic that hides schema changes.REDIS_URL. Connection pool sized explicitly..env.example documents
required vars (no values). .env is gitignored.After each change, re-verify local boot/test. Never hand a broken refactor to deploy.
State mode (create/refactor), what changed, and the local smoke-test result.
npx claudepluginhub ghulammuzz/azzist-skills --plugin azzistProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.