consult

consult is a skill for Claude Code from YG3-ai/quill. It costs 32 tokens per session (658 once invoked), scanned A, original, MIT.

A skill that pauses the current work and sends a short description of the situation to Quill, an outside helper, for reframing.

In plain words
What is it for?
Use it when an agent’s behavior or the project’s direction feels confusing, frustrating, or out of sync with your goal.
Why use it?
It helps clarify what is stuck, inconsistent, or different from what you expected before attempting a solution.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the quill plugin — 4 skills shipped together

Good fit Use it when an agent’s behavior or the project’s direction feels confusing, frustrating, or out of sync with your goal.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yg3-ai/quill/consult
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.

Any agent
npx skills add YG3-ai/quill --skill consult
Clone the repo
git clone --depth 1 https://github.com/YG3-ai/quill

Made for: Claude Code.

Or install quill, the plugin that ships this one along with the rest of its 4 skills.

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 consult

README.md
[![agentmods](https://agentmods.dev/badge/skills/yg3-ai/quill/consult/github.svg)](https://agentmods.dev/skills/yg3-ai/quill/consult)
Your own site
<a href="https://agentmods.dev/skills/yg3-ai/quill/consult"><img src="https://agentmods.dev/badge/skills/yg3-ai/quill/consult/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for consult

Your own site · 80×15
<a href="https://agentmods.dev/skills/yg3-ai/quill/consult"><img src="https://agentmods.dev/badge/skills/yg3-ai/quill/consult.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 658 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00032 $0.00658
Opus 5 $0.00016 $0.00329
Sonnet 5 $0.00006 $0.00132
Haiku 4.5 $0.00003 $0.00066

Measured 8d ago against content hash f345a77f3ed7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

consult scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import json, urllib.request, sys
plugins/quill/skills/consult/SKILL.md · 74 lines

How it starts

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

The developer just typed /quill:consult — likely because something feels stuck, inconsistent, or off. Their note: "$ARGUMENTS"

Don't try to solve the problem yet. Run this dialogue with Quill first.

Step 1 — Frame what you see

Look back at the last 6-10 exchanges in this session. In 2-3 sentences, describe:

  • What the developer has been trying to achieve
  • What you've actually been doing
  • Where their experience and your behavior might be diverging

Be specific. Reference concrete moments. This is your view of the situation, not theirs.

Length limit: keep your framing under 600 characters total. The bridge caps inputs at 1000 chars and will truncate longer messages. Tight framings get sharper reframings — say what's load-bearing, leave the rest.

Step 2 — Send your framing to Quill via the bridge

Use this command, substituting your framing from Step 1 for <YOUR FRAMING>:

python3 -c "
import json, urllib.request, sys
msg = sys.argv[1]
payload = json.dumps({'message': msg}).encode()
req = urllib.request.Request('http://127.0.0.1:9000/consult', data=payload, headers={'Content-Type': 'application/json'})
try:
    with urllib.request.urlopen(req, timeout=180) as r:
        data = json.loads(r.read())
    if data.get('welcome'):
        print('=== WELCOME ===')
        print(data['welcome'])
        print('=== END WELCOME ===')
        print()
    print(data['reply'])
except Exception as e:
    print(f'BRIDGE UNAVAILABLE: {e}')
" "<YOUR FRAMING>"

If you see BRIDGE UNAVAILABLE, the local advisor server isn't running. Tell the developer to check the plugin's status (it should auto-start when the plugin is enabled — see the plugin README for the recovery command) and stop here.

First-install note: if the output contains === WELCOME === / === END WELCOME === markers, this is the developer's very first Quill invocation. Show the welcome text (between the markers) verbatim as a brief preface in Step 3, before the three-paragraph dialogue. After this session it will never appear again — don't paraphrase or skip it.

Read the full file on GitHub · 74 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. 8d ago First seen · 74 lines · 32 tokens per session scan A f345a77f3ed7

Subscribe to this mod's changes

consult is a skill published in the GitHub repository YG3-ai/quill (1 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 658 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

codex-delegate

Delegates implementation-heavy or repetitive coding work (batch edits, boilerplate, multi-file refactors with clear patterns, test scaffolding) from Claude to OpenAI Codex CLI. Use when token cost outweighs judgment cost. Trigger phrases include "delegate to codex", "let codex do this", "batch refactor across files"…

WenyuChiou/codex-delegate · 92 tokens

git-workflow

This skill should be used when the user asks to "create git commit", "manage branches", "follow git workflow", "use Conventional Commits", "handle merge conflicts", or asks about git branching strategies, version control best practices, pull request workflows. Provides comprehensive Git workflow guidance for team…

Galaxy-Dawn/claude-scholar · 64 tokens

daily-paper-generator

Use when the user asks to generate daily paper digests on a general topic. This skill supports both arXiv and bioRxiv (or either one), then produces structured Chinese/English summaries for selected papers.

Galaxy-Dawn/claude-scholar · 47 tokens

taiyi-ui-design

A design-planning guide for describing how an application's user interface should look and behave. It produces a UI-DESIGN.md document covering layouts, components, interactions, accessibility, and error states.

Dong90/oh-my-taiyiforge · 35 tokens

taiyi-evolve

A workflow skill that compares the implemented code with the frozen design after development and testing. It records architecture changes and proposes updates to DESIGN.md, the document describing the intended system structure.

Dong90/oh-my-taiyiforge · 37 tokens

output-standards

Use this skill when defining or enforcing output formatting standards for agent responses in WrongStack. Triggers: user says "next steps format", "output standard", "response format", "final message format", "standardize next steps".

WrongStack/WrongStack · 52 tokens