基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/deathrashed/agents --skill fullstack命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Control the in-app Browser for opening, navigating, inspecting visible or interactive page state, clicking, typing, screenshots, and local web testing. It can have existing signed-in sessions. For semantic operations on linked resources, prefer a purpose-built connector, API, or CLI when available.
Control the user's Chrome browser for tasks that depend on existing Chrome state: tabs, logged-in sessions, or extensions. Prefer purpose-built connectors, APIs, or CLIs when available.
Control local Mac apps through Computer Use for tasks that require reading or operating app UI. Prefer purpose-built connectors, APIs, or CLIs when available.
| name | fullstack |
| description | Fullstack development with phase execution (Fullstack Developer Agent) |
Implementation task:
Task: {{args}}
Execute implementation phases with:
# Check current plan
cat .gemini/active-plan
# Read phase file
cat plans/[date]-[topic]/phase-02-endpoints.md
Only work on files listed in phase spec!
Follow steps exactly as specified.
npm run typecheck # Must pass
npm test # Must pass
Create completion report.
# Phase 02: API Endpoints
## File Ownership (Exclusive)
- src/api/users.ts
- src/schemas/*.ts
- tests/api/*.test.ts
## Shared (Read-Only)
- src/types/index.ts
- src/config/database.ts
## Dependencies
- Phase 01 must complete first
## Parallelization
- Can run with Phase 03 (Frontend)
| Rule | Action |
|---|---|
| ✅ In ownership list | Edit freely |
| ⚠️ In shared list | Read only, never write |
| ❌ Not in any list | DO NOT TOUCH |
| 🛑 Conflict detected | STOP immediately |
Phase 02 (Backend) Phase 03 (Frontend)
├── src/api/ ├── src/components/
├── src/schemas/ ├── src/hooks/
├── src/services/ ├── src/pages/
└── tests/api/ └── tests/components/
No overlap → Safe for parallel execution
| Phase | Type | Rule |
|---|---|---|
| 01, 04 | Sequential | Must run in order |
| 02, 03 | Parallel | Can run simultaneously |
# Fullstack Dev Report: Phase 02
## Summary
- Files modified: 5
- Tests added: 3
- Time: 15 min
## Changes
| File | Action |
|------|--------|
| src/api/users.ts | Created |
| src/schemas/user.ts | Created |
| tests/api/users.test.ts | Created |
## QA Status
- ✅ TypeScript: No errors
- ✅ Tests: 12 passed
## Next Steps
- Phase 03 can now start (frontend)
- Phase 04 blocked until Phase 02 + 03 complete
.gemini/active-plan# Phase 02: Backend API
/fullstack phase-02-api
# Phase 03: Frontend UI (parallel)
/fullstack phase-03-ui
# Phase 04: Integration (sequential)
/fullstack phase-04-integration
# Without phase file
/fullstack implement user CRUD with React + API
Key Takeaway: Execute phases with file isolation. Parallel backend/frontend = no conflicts.