command-dev

command-dev is a skill for Claude Code, Codex from andisab/swe-marketplace. It costs 85 tokens per session (3,410 once invoked), scanned A, original, MIT.

A skill for creating or improving custom Claude Code slash commands. A slash command is a reusable prompt that a developer starts by typing a command such as `/name`, with optional arguments and file references.

In plain words
What is it for?
Use it to design command syntax, add argument handling, reference project files, run shell operations, and configure command files with frontmatter.
Why use it?
It helps choose the right command structure and handle arguments, referenced files, and shell actions correctly. It also explains how commands differ from automatically used skills and full agents.

Skill for Claude CodeCodex

Part of the context-engineering plugin — 7 skills, 1 agent shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/andisab/swe-marketplace/command-dev
Any agent
npx skills add andisab/swe-marketplace --skill command-dev
Clone the repo
git clone --depth 1 https://github.com/andisab/swe-marketplace

Made for: Claude Code, Codex.

Or install context-engineering, the plugin that ships this one along with the rest of its 7 skills, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for command-dev

README.md
[![agentmods](https://agentmods.dev/badge/skills/andisab/swe-marketplace/command-dev.svg)](https://agentmods.dev/skills/andisab/swe-marketplace/command-dev)
Your own site
<a href="https://agentmods.dev/skills/andisab/swe-marketplace/command-dev"><img src="https://agentmods.dev/badge/skills/andisab/swe-marketplace/command-dev.svg" alt="Measured on agentmods" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,410 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00085 $0.03410
Opus 5 $0.00043 $0.01705
Sonnet 5 $0.00017 $0.00682
Haiku 4.5 $0.00009 $0.00341

Measured 4d ago against content hash 360fb5eefebd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

command-dev scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/context-engineering/skills/command-dev/SKILL.md · 721 lines

How it starts

The opening of the file, as written. The whole thing — 721 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Command Dev Skill

This skill helps create production-ready custom slash commands following Anthropic's official specifications.

What is a Slash Command?

A slash command is a user-invoked reusable prompt stored as a Markdown file. Unlike skills (model-invoked) or agents (complex AI assistants), slash commands are:

  • User-triggered: Explicitly invoked with /command-name
  • Template-based: Expand to prompts with placeholders
  • Lightweight: Simple Markdown files with optional frontmatter
  • Quick access: Fast way to reuse common instructions

Commands vs Skills vs Agents

Feature Command Skill Agent
Invocation User (/name) Model (automatic) User or Task tool
Complexity Simple prompt template Capability with logic Full AI assistant
Arguments Yes ($1, $2, $ARGUMENTS) N/A N/A
File access Yes (@file) Via tools Via tools
Bash exec Yes (!command) Via tools Via tools
Use case Quick prompts, workflows Autonomous features Domain expertise

When to use Commands: Reusable prompts, quick text expansion, parametrized instructions, file processing workflows

Command Structure

Basic Command (Prompt only)

Please review this code for security vulnerabilities and provide
specific recommendations for improvement.

File: .claude/commands/security-review.md Usage: /security-review

Command with Frontmatter

---
description: Review code for security vulnerabilities with OWASP focus
argument-hint: [file-path] [--strict]
allowed-tools: Read, Grep, Glob
model: opus
disable-model-invocation: false
---

Please perform a comprehensive security audit of the codebase, focusing on:
- OWASP Top 10 vulnerabilities
- Authentication and authorization issues
- Input validation and sanitization
- Secrets exposure

Frontmatter Fields

All frontmatter fields are optional.

description

Brief explanation shown in /help and for SlashCommand tool.

Read the full file on GitHub · 721 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 721 lines · 85 tokens per session scan A 360fb5eefebd

Subscribe to this mod's changes

command-dev is a skill published in the GitHub repository andisab/swe-marketplace (21 stars, last pushed 15d ago), licensed MIT. It adds 85 tokens to every session and 3,410 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

pr

Comprehensive PR/issue review - analyzes architecture, tests, identifies unrelated changes mixed in, drafts review comment or issue comment. Use when user asks to review a PR, check a PR, look at PR changes, or comment on an issue.

umputun/cc-thingz · 51 tokens

new

Use when user asks to create a release, cut a release, or publish a version. Auto-detects GitHub vs GitLab vs Gitea, calculates semantic version, generates release notes from PRs/MRs or commits, shows preview for confirmation before publishing.

umputun/cc-thingz · 56 tokens

writing-style

Use for technical communication - GitHub/GitLab tickets, PR/MR descriptions, issue comments, code review comments, commit messages. Direct, brief style with no AI-speak. NOT for README.md, public docs, or blog posts.

umputun/cc-thingz · 52 tokens

root-cause-investigator

Systematic root cause analysis for errors, bugs, and unexpected behaviors using 5-Why methodology. Use when user reports errors, build failures, test failures, performance issues, integration problems, or any "it's not working" scenarios.

umputun/cc-thingz · 53 tokens

ccc-console

The Commander Console: one inline panel — agents, usage, safety, memory, history — plus a prompt bar that reaches this session. Publishing a snapshot is separate and consent-gated.

KevinZai/commander · 40 tokens

ccc-loop

Loop taxonomy hub — turn/goal/time/proactive loops, /goal + /loop + /schedule guidance, the should-loop gate, verifier-separation, and state-file conventions for recurring agent work.

KevinZai/commander · 43 tokens