turnstile-conversate

turnstile-conversate is a skill for Claude Code, Codex from febradc-github/turnstile. It costs 63 tokens per session (1,443 once invoked), scanned A, original, MIT.

A natural-language entry point for Turnstile, a work-tracking system built around a backlog, a current board, and task notes. It interprets a request and routes it to the matching task workflow.

In plain words
What is it for?
Use it to ask about board status, resume or pause work, create or refine tickets, plan a sprint, review code, or investigate a bug.
Why use it?
It removes the need to remember separate commands for checking work, planning, starting, reviewing, pausing, or debugging tasks.

Skill for Claude CodeCodex

Part of the turnstile plugin — 24 skills, 23 commands, 5 agents, 3 hooks, 1 MCP server 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/febradc-github/turnstile/turnstile-conversate
Any agent
npx skills add febradc-github/turnstile --skill turnstile-conversate
Clone the repo
git clone --depth 1 https://github.com/febradc-github/turnstile

Made for: Claude Code, Codex.

Or install turnstile, the plugin that ships this one along with the rest of its 24 skills, 23 commands, 5 agents, 3 hooks, 1 MCP server.

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 turnstile-conversate

README.md
[![agentmods](https://agentmods.dev/badge/skills/febradc-github/turnstile/turnstile-conversate.svg)](https://agentmods.dev/skills/febradc-github/turnstile/turnstile-conversate)
Your own site
<a href="https://agentmods.dev/skills/febradc-github/turnstile/turnstile-conversate"><img src="https://agentmods.dev/badge/skills/febradc-github/turnstile/turnstile-conversate.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,443 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.00063 $0.01443
Opus 5 $0.00032 $0.00722
Sonnet 5 $0.00013 $0.00289
Haiku 4.5 $0.00006 $0.00144

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

Security

Grade A, and why

turnstile-conversate 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 5d 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.

skills/turnstile-conversate/SKILL.md · 49 lines

How it starts

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

Conversate

Process

  1. Read turnstile/backlog.yml (if it exists) and the current sprint -- turnstile/sprint.yml, or a legacy root turnstile/sprint-*.yml with sprint.status: active -- to build a status snapshot.
  2. Match the user's request ($ARGUMENTS plus their message) against these cases, in order:
    • Status or "what's on the board": answer directly from the snapshot (same content as /turnstile:board). No skill invocation.
    • Returning to work -- "where was I", "what was I doing", "pick up where I left off": invoke turnstile-pickup. It restores work state from the board and vault (unlike the built-in /resume, which restores a past conversation), and offers to un-park the most recently parked ticket when nothing is in progress.
    • An interrupt -- "pause this", "park this", "something urgent came up" while an item is in_progress: invoke turnstile-park with any stated reason.
    • What a piece of code does / how something is implemented: check turnstile/code/ via search_notes/read_note. If a note exists, read the source file at its aliases path and compare. Still matching: answer directly, citing the verified file. Drifted: answer from the file -- source is truth -- and dispatch brain-curator (opportunistic mode, this one file, with the purpose/exports/imports/callers you observed) to correct the note. No note: answer via Grep/Read as usual -- do not dispatch brain-curator just to backfill missing coverage; that's /turnstile:brain-init's job. No skill invocation.
    • A brand-new idea not on the board: invoke turnstile-brainstorm with the description. Exception: clearly trivial work (a typo, a tiny chore, within the quick ceiling -- quick_max_points, default 3 -- with no design question) goes to turnstile-quick instead.
    • Something broken (an error, failing test, unexpected behavior): invoke turnstile-systematic-debugger with the report. It diagnoses first, then routes the fix.
    • "Remember this" / a fact or decision the user wants recorded in the vault: invoke turnstile-remember with the user's words.
    • Cancel, kill, or drop an item: invoke turnstile-drop with that id.
    • A code review or feedback on a diff: invoke turnstile-code-reviewer.
    • Breaking an item into smaller pieces (or an epic with no children yet): invoke turnstile-breakdown with that id.
    • An existing item the user wants to move forward:
      • type: epic, or another item names it as parent: containers don't move through gates. No children yet: invoke turnstile-breakdown; otherwise report the children's statuses and route to the child at the earliest gate.
      • status: idea -> invoke turnstile-spec with that id. (An item only reaches idea after refine's design approval, so a design doc always exists -- never invoke turnstile-refine, which mints a brand-new id and cannot resume an existing item.)
      • status: ready, not in any sprint file -> invoke turnstile-sprint-plan (or turnstile-next when turnstile/config.yml says cadence: flow).
      • In the active sprint, status: in_progress, and the user says the work is finished -> invoke turnstile-review with that id. Check this before the next case.
      • In the active sprint, status: todo or in_progress (not being called finished) -> invoke turnstile-work with that id.
      • In the active sprint, status: review -> an interrupted review; if the user wants a verdict, invoke turnstile-review (it resumes). Otherwise report the status.
      • On the active board, status: parked -> invoke turnstile-pickup; it reads the resume note and offers the un-park.
      • In the active sprint, status: done -> already shipped; say so. No skill.
      • status: dropped -> cancelled; relay the recorded reason. No skill.
    • Starting a new sprint: invoke turnstile-sprint-plan (in cadence: flow it explains the mode instead of planning).
    • "What should I work on next" / pulling the next piece of work in cadence: flow: invoke turnstile-next.
    • Anything ambiguous: ask one clarifying question.

Read the full file on GitHub · 49 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. 5d ago First seen · 49 lines · 63 tokens per session scan A 7266f6c9ecd8

Subscribe to this mod's changes

turnstile-conversate is a skill published in the GitHub repository febradc-github/turnstile (1 stars, last pushed 1mo ago), licensed MIT. It adds 63 tokens to every session and 1,443 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

chief-revenue-officer

Owns the revenue engine end to end: sales, monetization, pricing, customer success, retention, and partnerships. Use this for pricing and packaging decisions, sales strategy and coverage, forecast and pipeline health, churn and expansion, partner and channel strategy, or when marketing-sourced demand is not…

cbrock84/headcount · 80 tokens

chief-strategy-officer

Owns where the business plays and how it wins over a multi-year horizon — portfolio choices, corporate development, strategic partnerships, and planning under uncertainty. Use this for a decision about which markets or businesses to be in, whether to build, buy, or partner, how to allocate capital across business…

cbrock84/headcount · 93 tokens

seo-strategy

Audits and improves organic search performance — technical health, site architecture, internal linking, structured data, and the content decisions that determine what can rank. Use this to run an SEO audit, diagnose why pages are not ranking or were deindexed, plan a site's URL and navigation structure, add structured…

cbrock84/headcount · 74 tokens

financial-statement-analysis

Reads a set of financial statements and establishes what changed and why — fluctuation analysis against prior period and against budget, profitability, liquidity, solvency and efficiency ratios, benchmarking, and the non-GAAP measures presented alongside them. Use this to interpret results, review a counterparty's or…

cbrock84/headcount · 93 tokens

youtube-producer

Plans, packages, and scripts long-form video for retention and channel growth — idea selection, titles and thumbnails, script structure, and diagnosing why a video or channel underperforms. Use this for video ideas, packaging, scripting, a retention teardown, or channel strategy — including when someone describes a…

cbrock84/headcount · 86 tokens

estimating-and-contingency

Produces a cost or effort estimate someone can defend — decomposing the work, choosing between analogous, parametric and bottom-up methods, documenting the basis and its assumptions, expressing confidence as a range, and sizing contingency and management reserve separately. Use this to build an estimate, challenge one…

cbrock84/headcount · 87 tokens