{
  "markdown": "# Quick Question (/q)\n\nDon't you find it annoying that Claude will search your codebase, spin up a plan, edit files, and run half a dozen tools — but won't just *answer your question*? You ask \"what port does Redis use?\" and suddenly it's grepping through your entire project looking for Redis configs.\n\nThat's why I created `/q`. One simple slash command that tells Claude to skip everything and just give you a straight answer. No planning. No file edits. No tool use. No code search. Just the answer.\n\n## Usage\n\n```\n/q what port does Redis use?\n→ 6379\n\n/q what's the difference between let and const in JavaScript?\n→ let can be reassigned, const cannot. Both are block-scoped.\n\n/q what is a Python decorator?\n→ A wrapper that modifies a function's behavior without changing its code.\n\n/q how do I reverse a list in JavaScript?\n→ array.reverse() mutates in place, or [...array].reverse() for a copy.\n```\n\n## Install\n\n```\n/plugin install quick-question\n```\n\nOr manually copy the command file to use it right away:\n\n```bash\n# User-level (works in all projects)\nmkdir -p ~/.claude/commands\ncp .claude-plugin/commands/q.md ~/.claude/commands/q.md\n\n# Project-level (works only in that project)\nmkdir -p .claude/commands\ncp .claude-plugin/commands/q.md .claude/commands/q.md\n```\n\n## This Should Be Built In\n\nHonestly, this shouldn't need to be a plugin. A \"just answer me\" mode should be a default part of Claude Code. Every coding assistant should know the difference between \"help me refactor this module\" and \"what does `errno 13` mean?\" One needs tools, planning, and file access. The other just needs a sentence. Until that's a first-class feature, `/q` fills the gap.\n\n## How It Works\n\nIt's just a prompt template. The `/q` command prepends an instruction telling Claude to answer directly, then passes along your question. That's it — no magic, no dependencies, no config.\n\n## License\n\nMIT\n",
  "bytes": 1893,
  "sha": "da870788b9893f1cdb50d4406a9789ec1af207d3d758d9a6cd3ce5a3539c4c40",
  "repo_slug": "nentrapper-g-rod/claude-quick-question",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_nentrapper_g_rod_claude_quick_question_q_26218ebe/readme"
}