원클릭으로
quick-build
Lightweight design-and-implement skill for small-to-medium tasks. Collapses brainstorm + plan + build into one session.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Lightweight design-and-implement skill for small-to-medium tasks. Collapses brainstorm + plan + build into one session.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Safe Rails console interaction over tmux. Reads project code (models, services, policies, data flow) to build intelligent Rails console commands, then executes via tmux-relay. Trigger when interacting with a Rails console pane — debugging, investigating data, running queries, performing tasks, or any controlled operation that needs codebase context.
Interactive shell helper via tmux-relay. Helps users perform tasks on remote servers through SSH sessions — run commands, inspect logs, manage services, check system state. No codebase exploration needed. Trigger when the user wants to interact with a shell pane for server operations.
Collaborative brainstorm for architecture decisions, feature design, or any problem with multiple viable approaches. Read-only — no code changes.
Write a technical design document for a feature, system, or architecture change. Read-only — no code changes.
Turn a design document from brainstorm into a concrete implementation plan. Read-only — no code changes.
Help address review/issue comments on the open GitHub PR for the current branch using gh CLI
| name | quick-build |
| description | Lightweight design-and-implement skill for small-to-medium tasks. Collapses brainstorm + plan + build into one session. |
| user-invocable | true |
| disable-model-invocation | true |
| allowed-tools | Read, Edit, Write, Grep, Glob, Bash, AskUserQuestion, WebSearch, mcp__context7__resolve-library-id, mcp__context7__query-docs, mcp__sequential-thinking__sequentialthinking, TaskCreate, TaskUpdate, TaskList |
Design and implement small-to-medium tasks in a single session — no intermediate files, no skill handoffs.
Announce at start: "I'm using the quick-build skill to design and implement this task."
Design philosophy:
Conversation style:
Other options for all questions to the user.Step A — Read the codebase first:
Tell the user "Let me explore the relevant parts of the codebase first." then do the following silently (don't narrate each file read):
Step B — Scope the problem:
If the task is too broad or complex for a single session, suggest escalating to /brainstorm for the full design flow. Indicators of complexity:
Step C — Ask questions to fill the gaps:
Ask questions one at a time to deeply understand the purpose, constraints, and success criteria.
Keep going until you can clearly articulate: what we're building, why it matters, and where it fits in the existing system.
Present 2–3 viable approaches. Lead with your recommendation and why.
For each option, use this format:
## Option X: [Name] (Recommended — if applicable)
**Approach**: [Brief description]
**When to choose**: [One-liner on what makes this the right pick]
**Pros**:
- [Advantage 1]
- [Advantage 2]
**Cons**:
- [Disadvantage 1]
- [Disadvantage 2]
**Effort**: [Low/Medium/High]
**Risk**: [Low/Medium/High]
**Fits existing patterns**: [Yes/Partially/No]
After listing all options, include a quick comparison table:
| Criteria | Option A [Name] | Option B [Name] | Option C [Name] |
| ------------- | --------------- | --------------- | --------------- |
| Effort | Low | Medium | High |
| Risk | Medium | Low | Low |
| Fits patterns | Yes | Partially | No |
Wait for the user to pick one before moving to Phase 3.
Step A — Present the plan:
Present a concise implementation plan directly in the conversation. No file is saved. Format:
## Implementation Plan
### 1. [Action description]
[Brief description of what changes and why]
### 2. [Action description]
[Brief description of what changes and why]
### 3. Verify
[How to confirm it works — tests, commands, etc.]
Wait for user approval before writing any code.
Step B — Implement:
Execute the plan directly:
If you hit a blocker during implementation, stop and ask rather than guessing.