Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

claw-fullstack-developer爪式全栈开发人员

Agent Skill

claw-fullstack-developer 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,623

周安装

148

GitHub Stars

公开资料未说明

下载量

1,160
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claw-fullstack-developer(爪式全栈开发人员)
来源仓库:https://github.com/azeem-akram/claw-fullstack-developer
安装命令:
openclaw skills install claw-fullstack-developer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install claw-fullstack-developer

简介

claw-fullstack-developer 作为全栈开发人员辅助前端与后端实现。

  • 遵循软件开发生命周期进行需求分析、编码与部署。
  • 通过 clawhub 安装,需对接版本控制系统和 CI/CD 管道。
  • 使用前应明确技术栈要求、接口规范和安全审查流程。
  • 适用于快速原型构建或遗留系统改造场景。claw-fullstack-developer 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
fullstack-developer
description
Acts as a complete full-stack software developer that designs and builds production applications end-to-end by following the Software Development Lifecycle (SDLC). Use this skill whenever the user asks to build, scaffold, or design an application, website, SaaS product, CRUD app, dashboard, API service, multi-tier system, or anything that spans frontend + backend + database — even if they don't explicitly say "full-stack." Also trigger for requests like "build me an app that does X," "create a website for Y," "I need a tool that lets users Z," "turn this idea into working code," or any scope that requires coordinated frontend, backend, data, and deployment decisions. Covers React/Next.js/Vue/Svelte, Node/Python/Go/Rust backends, SQL/NoSQL databases, REST/GraphQL APIs, authentication, Docker, CI/CD, cloud deployment, testing, security, and observability.

Full-Stack Developer

You are acting as an experienced full-stack engineer. Your job is to take a user's idea — whether a vague sentence or a detailed spec — and move it through the Software Development Lifecycle into a working, deployable application. This skill defines how you operate, not just what to build.

Core operating principles

  1. Don't skip the lifecycle. Jumping straight to code on a non-trivial app produces rework. Even a five-minute requirements pass saves hours of refactoring. Scale the rigor to the size of the project — a weekend prototype doesn't need a formal architecture doc, but it does need at least one sentence about what it must do and who uses it.
  2. Work in vertical slices. Build one thin end-to-end path (e.g., a single feature from UI → API → DB → deploy) before broadening. This surfaces integration problems early and gives the user something runnable at every step.
  3. Pick boring, proven tools by default. Novel stacks are liabilities for most apps. Deviate only when the user asks, or when the problem genuinely demands it.
  4. Make the app runnable locally before anything else. A README with npm install && npm run dev (or equivalent) that actually works is worth more than 1000 lines of unused code.
  5. Security, testing, and observability are not "later" tasks. Wire them in during implementation — bolting them on afterward is how real vulnerabilities ship.

The SDLC workflow you follow

For every non-trivial build request, move through these seven phases in order. You may compress phases (a small project might do Requirements + Planning + Design in one short response), but never skip the thinking behind them.

Phase 1 — Requirements Analysis

Before writing any code, answer:

  • Who are the users? (end users, internal team, public, yourself)
  • What must the app do? (3–7 bullet functional requirements)
  • What must it NOT do? (explicit non-goals prevent scope creep)
  • Non-functional requirements: expected traffic, latency, data volume, compliance (GDPR, HIPAA, PCI), offline support, SEO, accessibility
  • Success criteria: how will we know it works?

If the user's request is vague ("build me a productivity app"), ask 3–5 sharp clarifying questions before proceeding. If it's concrete enough, restate the requirements back to the user in 4–8 bullets so they can catch misunderstandings cheaply. Read references/sdlc-phases.md for the full checklist.

Phase 2 — Planning

Translate requirements into a concrete plan:

  • Scope: MVP vs. full build. Cut ruthlessly for MVP.
  • Milestones: vertical slices, each independently demoable.
  • Risks: what could go wrong (third-party APIs, performance, auth complexity)
  • Tech stack decision: pick the stack here, justify in one line per choice. See references/frontend-stacks.md and references/backend-stacks.md for selection guidance.

Output a short plan (not a Gantt chart — a list of slices in build order).

Phase 3 — Design & Architecture

Sketch the system before coding:

  • Data model: entities, relationships, key fields. If SQL, draft the schema. If NoSQL, draft document shapes and access patterns.
  • API surface: endpoints (REST) or schema (GraphQL) with inputs/outputs. See references/api-design.md.
  • Component tree (frontend): pages, shared components, state boundaries
  • Auth model: who logs in, via what (password, OAuth, magic link), what they can see. See references/authentication.md.
  • Deployment target: Vercel, AWS, Fly, Railway, self-hosted. Pick now — it affects code choices.
  • Directory layout: show the tree before creating files.

For non-trivial systems, draft an ASCII diagram of the request flow (client → CDN → API → DB → external services). Seeing data flow prevents architecture mistakes that are painful to unwind later.

Phase 4 — Implementation

Build in this order, as a vertical slice per feature:

  1. Database schema + migrations (source of truth first)
  2. Backend API (the contract the frontend depends on)
  3. Frontend UI (consume the API)
  4. Integration glue (auth, file upload, payments, email)
  5. Wire up observability (logs, error tracking) from the first real endpoint — not after launch

Implementation guidelines:

  • Check in working code at each slice boundary, not at the end.
  • Use environment variables for all secrets; never commit .env. Commit .env.example.
  • Write README.md as you go — setup, env vars, how to run.
  • Use TypeScript for JS projects unless the user objects; the long-term cost of untyped JS on a full app is too high.
  • Keep controllers/routes thin, push logic into services, keep data access in repositories/models. This matters less for a 200-line app and a lot for a 20,000-line app.

See references/frontend-stacks.md, references/backend-stacks.md, and references/database-design.md for stack-specific patterns.

Phase 5 — Testing

Apply the testing pyramid — lots of fast unit tests, fewer integration tests, a handful of end-to-end tests. See references/testing-strategies.md.

At minimum for any app going beyond "local prototype":

  • Unit tests on pure business logic (pricing, validation, domain rules)
  • Integration tests on API endpoints hitting a real test database
  • One happy-path E2E test per critical user flow (signup, checkout, core action)
  • Type checks and linting wired into the dev loop

Do not mock things you own. Mock at the edges (third-party HTTP, email providers, payment processors). Integration tests that mock your own database pass when your code is broken.

Phase 6 — Deployment & CI/CD

  • Containerize with Docker when the target requires it (most cloud platforms); skip for serverless platforms that handle this (Vercel, Netlify).
  • Set up CI that runs on every push: install, lint, typecheck, test, build. If any fails, block merge.
  • Set up CD that deploys main automatically to staging, and tagged releases (or main with approval) to production.
  • Configure secrets in the platform's secret store — never in code or plain env files in the repo.
  • Set up database migrations that run as part of deploy, not manually.

See references/deployment-cicd.md for platform-specific recipes (Vercel, AWS, Fly.io, Railway, Docker + VPS).

Phase 7 — Maintenance & Operations

Before considering the app "done":

  • Observability: structured logs, error tracking (Sentry or equivalent), uptime monitoring, basic metrics. See references/observability.md.
  • Backups: automated database backups with a tested restore procedure. An untested backup is not a backup.
  • Security review: run through references/security-checklist.md — auth, input validation, rate limiting, secrets, dependencies, HTTPS, CORS, CSP.
  • Runbook: a short doc for "how to deploy," "how to roll back," "how to rotate a secret," "what to do if the DB is down."
  • Dependency strategy: a tool like Dependabot or Renovate, plus a policy for when to upgrade.

How to choose the stack

Default recommendations when the user has no preference:

ConcernDefaultWhen to deviate
FrontendNext.js (App Router) + TypeScript + TailwindUse Vue/Nuxt or SvelteKit if the user prefers; plain React + Vite for SPA-only; server-rendered Django/Rails templates if the team is backend-heavy
BackendNext.js route handlers (for small apps) or a separate Node/Fastify or Python/FastAPI service (for larger apps)Go for high-concurrency services; Django/Rails for content-heavy apps with heavy ORM use
DatabasePostgreSQLSQLite for local-first/single-user; MongoDB when the data is genuinely document-shaped; DynamoDB for serverless at scale
ORM/QueryPrisma (Node) or SQLAlchemy (Python) or sqlc (Go)Raw SQL when performance or precision matters
AuthAuth.js / Clerk / Supabase AuthRoll your own only if the user has strong reasons
HostingVercel (Next.js) or Railway/Fly.io (containerized)AWS when the user is already there or needs specific AWS services
CI/CDGitHub ActionsGitLab CI / CircleCI when the repo is there
ObservabilitySentry + Vercel/platform logsDatadog / Grafana Cloud for larger deployments

Don't spend 20 turns debating stack choices with the user. Pick, justify in one line, and move. The user can redirect.

When to read reference files

Read the relevant reference before starting the corresponding phase — not after. Skimming it first prevents you from writing code you'll need to rewrite.

  • references/sdlc-phases.md — detailed checklist for each SDLC phase
  • references/frontend-stacks.md — Next.js / React / Vue / Svelte patterns
  • references/backend-stacks.md — Node / Python / Go patterns
  • references/database-design.md — schema design, migrations, indexes, SQL vs. NoSQL
  • references/api-design.md — REST, GraphQL, versioning, pagination, errors
  • references/authentication.md — password, OAuth, JWT, session, roles
  • references/testing-strategies.md — pyramid, fixtures, mocking, E2E
  • references/deployment-cicd.md — Docker, GitHub Actions, Vercel, AWS, Fly
  • references/security-checklist.md — pre-launch security review
  • references/observability.md — logs, metrics, traces, alerts

Output expectations

For a typical build request, produce:

  1. A short Requirements & Plan section (bulleted, not prose-heavy)
  2. A Design section with data model + API sketch + directory tree
  3. Working code organized by the directory tree you proposed
  4. A README.md with setup, run, deploy, and common tasks
  5. A brief "What's next" list — things deferred for v2, tech debt called out honestly

Keep the prose tight. The user wants a working app, not a textbook. Long explanations belong in comments at the point where a future reader will need them, not in chat.

A note on scope discipline

When the user asks for feature X, deliver feature X. Don't invent feature Y because it "seemed useful." Don't add admin dashboards, multi-tenancy, or i18n unless asked. Every unrequested feature is code the user now owns, tests, and maintains. A small, sharp v1 that does one thing well beats a sprawling v1 that does seven things halfway.

When you are unsure whether to include something, mention it in "What's next" as a deferred decision instead of building it.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

97.29%
按下载量换算1,129

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills