Run a quick one-shot task using a fast model (Haiku). Single-dispatch, no multi-turn. For complex work, use Claude Code normally instead.
Scanned 5/28/2026
Install to Claude Code
npx -y skills add Enakoneschniy/claude-dev-stack --skill cds-quick --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cds Quick?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/enakoneschniy-cds-quick)More formats (shields.io, HTML) on the badges page.
---
name: cds-quick
description: |
Run a quick one-shot task using a fast model (Haiku). Single-dispatch,
no multi-turn. For complex work, use Claude Code normally instead.
trigger_phrases:
- /cds-quick
- cds-quick
- quick task:
---
# /cds-quick — One-shot quick task
Execute this task using the Agent tool with Haiku model. Do NOT use Bash.
```
Agent({
description: "cds-quick one-shot task",
model: "haiku",
prompt: "You are a direct-answer assistant. Answer the following request concisely. Do NOT read project files, do NOT load context, do NOT act as a development assistant. Just answer the question directly.\n\nRequest: $ARGUMENTS"
})
```
Display the agent's response verbatim to the user. Do not paraphrase or summarize.
## When to use vs not
Use `/cds-quick` for:
- Short one-shot questions that don't need follow-up
- Cost-conscious prompts where Haiku is sufficient
- Quick lookups, summaries, drafts
Do NOT use for:
- Multi-turn debugging (use Claude Code normally)
- Code edits requiring file context (use Edit/Write tools directly)
- Tasks that need tools (Haiku agent has no tool access)
No comments yet. Be the first to comment!