drive-clique

drive-clique is a skill for Claude Code, Codex from thejdubb02/clique. It costs 69 tokens per session (1,202 once invoked), scanned B, original, MIT.

Instructions for controlling CLIque, a service that runs coding-agent sessions in tmux and exposes them through an HTTP API. It covers starting sessions, sending prompts, reading results, and waiting for agents to finish or request input.

In plain words
What is it for?
Use it to start and monitor parallel coding-agent tasks, collect their output, send follow-up prompts, and wait for completion or human input.
Why use it?
It helps coordinate work performed by several agents or across several repositories from one control interface. It also explains how to distinguish working, waiting, completed, stopped, and error states.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it to start and monitor parallel coding-agent tasks, collect their output, send follow-up prompts, and wait for completion or human input.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/thejdubb02/clique/drive-clique
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 thejdubb02/clique --skill drive-clique
Clone the repo
git clone --depth 1 https://github.com/thejdubb02/clique

Made for: Claude Code, Codex.

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 drive-clique

README.md
[![agentmods](https://agentmods.dev/badge/skills/thejdubb02/clique/drive-clique/github.svg)](https://agentmods.dev/skills/thejdubb02/clique/drive-clique)
Your own site
<a href="https://agentmods.dev/skills/thejdubb02/clique/drive-clique"><img src="https://agentmods.dev/badge/skills/thejdubb02/clique/drive-clique/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 drive-clique

Your own site · 80×15
<a href="https://agentmods.dev/skills/thejdubb02/clique/drive-clique"><img src="https://agentmods.dev/badge/skills/thejdubb02/clique/drive-clique.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,202 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. 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.00069 $0.01202
Opus 5 $0.00034 $0.00601
Sonnet 5 $0.00014 $0.00240
Haiku 4.5 $0.00007 $0.00120

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

Security

Grade B, and why

drive-clique scanned grade B with 2 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 9d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

id=$(curl -s "${auth[@]}" $base/api/sessions -d \

Makes network callslowCapability

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

curl -H "Authorization: Bearer $CLIQUE_TOKEN" http://127.0.0.1:3200/api/state
skills/drive-clique/SKILL.md · 88 lines

How it starts

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

Driving CLIque

CLIque runs coding-agent sessions (Claude, Codex, Grok, a shell, …) in tmux and exposes every action as an HTTP call. That is the point: anything the panel can do, a script or an agent can do. This skill is the orchestration surface.

Connect

Base URL is the panel's own — http://127.0.0.1:3200 on the same box, or the tailscale URL from off it. Authenticate with a bearer token, not a cookie:

CLIQUE_TOKEN=$(python3 -m clique token create my-agent | grep -oE 'mxp_[A-Za-z0-9_-]+')   # shown once
curl -H "Authorization: Bearer $CLIQUE_TOKEN" http://127.0.0.1:3200/api/state

Use --read-only for a token that may observe but not start or stop anything.

The one word that matters: state

Every session in GET /api/state carries a state:

state meaning
working producing output right now
waiting stopped and asking a person something (needs input)
error stopped on something that looks like an error
idle up, quiet, nothing pending — a task that finished cleanly
stopped no process (killed or never started)

Orchestration is: start work, then wait for idle (done) or waiting (it needs you) — never a tight poll of the whole panel.

Endpoints

  • GET /api/state — every session, each with id, name, cli, cwd, state, rss.
  • POST /api/sessions — start one. Body: {cli, cwd, name?, folder?, mode?}. Add {worktree: true, branch: "<name>"} to run it in an isolated git worktree of the repo at cwd — the way to put several agents on one repo without them clobbering each other. Returns {id, worktree}.
  • POST /api/sessions/<id>/send{text, enter: true} submits a prompt.
  • GET /api/sessions/<id>/peek?lines=N — the last N lines of the pane.
  • GET /api/sessions/<id>/transcript — the full conversation as turns (Claude).
  • GET /api/sessions/<id>/wait?for=idle,waiting&timeout=60blocks until the session reaches one of the for states or the timeout (max 300s). Returns {state, matched, waited}. This is the primitive to build on.
  • POST /api/sessions/<id>/kill — stop it (keeps the record, resumable).
  • DELETE /api/sessions/<id> — remove it. A worktree CLIque made is removed too, but only when it has no uncommitted changes.

Read the full file on GitHub · 88 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. 9d ago First seen · 88 lines · 69 tokens per session scan B fee63f75f022

Subscribe to this mod's changes

drive-clique is a skill published in the GitHub repository thejdubb02/clique (1 stars, last pushed 3d ago), licensed MIT. It adds 69 tokens to every session and 1,202 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, 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

officecli-word-form

Use this skill to create fillable Word forms (.docx) with real Content Controls (SDT) + legacy FormField checkboxes + MERGEFIELD mail-merge placeholders + document protection. Trigger on: 'fillable form', 'form fields', 'content controls', 'SDT', 'word form', 'fill in', 'only editable fields', 'protect document'…

iOfficeAI/OfficeCLI · 224 tokens

officecli-data-dashboard

Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to…

iOfficeAI/OfficeCLI · 157 tokens

imaging-data-commons

Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Use for accessing large-scale radiology (CT, MR, PET) and pathology datasets for AI training or research. No authentication required. Query by metadata, visualize in browser, check licenses.

synthetic-sciences/openscience · 62 tokens

flow-cytometry-analysis

Complete flow cytometry analysis pipeline. FCS file handling, compensation, manual/automated gating, immunophenotyping, CFSE proliferation analysis, cell cycle analysis (Dean-Jett-Fox), and apoptosis assays. Extends flowio with analytical workflows. For raw FCS parsing only use flowio.

synthetic-sciences/openscience · 67 tokens

datamol

Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…

synthetic-sciences/openscience · 67 tokens

cellxgene-census

Query the CELLxGENE Census (61M+ cells) programmatically. Use when you need expression data across tissues, diseases, or cell types from the largest curated single-cell atlas. Best for population-scale queries, reference atlas comparisons. For analyzing your own data use scanpy or scvi-tools.

synthetic-sciences/openscience · 67 tokens