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.
npx agentmods add commands/miounet11/ccjk/claudegit clone --depth 1 https://github.com/miounet11/ccjkWrote 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.
[](https://agentmods.dev/commands/miounet11/ccjk/claude)<a href="https://agentmods.dev/commands/miounet11/ccjk/claude"><img src="https://agentmods.dev/badge/commands/miounet11/ccjk/claude.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.01829 |
| Opus 5 | $0.00000 | $0.00915 |
| Sonnet 5 | $0.00000 | $0.00366 |
| Haiku 4.5 | $0.00000 | $0.00183 |
Grade A, and why
CLAUDE 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.
This is a copy
92% identical to CLAUDE — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Commands Module
Last Updated: Mon Oct 27 19:39:26 CST 2025
Module Responsibilities
CLI command implementation module containing all major command functions for CCJK, providing both interactive and non-interactive operation interfaces for Claude Code environment setup and management.
Entry Points and Startup
- Main Entry Points:
init.ts- Complete initialization flow with full setup options (45KB, 1,200+ lines)menu.ts- Interactive menu system with feature selection (13KB, 350+ lines)update.ts- Workflow template updates without full reinstall (4KB, 100+ lines)ccr.ts- Claude Code Router proxy configuration (1KB, 30+ lines)ccu.ts- CCusage tool integration and execution (1KB, 40+ lines)check-updates.ts- Tool version checking and update management (1.3KB, 50+ lines)config-switch.ts- Configuration switching for multi-provider support (14KB, 400+ lines)uninstall.ts- CCJK uninstallation with selective removal (10KB, 300+ lines)
External Interfaces
Command Interfaces
// Initialize command options (v3.3.0+)
export interface InitOptions {
configLang?: SupportedLang
aiOutputLang?: AiOutputLanguage | string
force?: boolean
skipBanner?: boolean
skipPrompt?: boolean
codeType?: CodeToolType | string // Support 'cc', 'cx' abbreviations
// Non-interactive mode parameters
configAction?: 'new' | 'backup' | 'merge' | 'docs-only' | 'skip'
apiType?: 'auth_token' | 'api_key' | 'ccr_proxy' | 'skip'
apiKey?: string // Used for both API key and auth token
apiUrl?: string
apiModel?: string // Primary API model
apiFastModel?: string // Fast API model
provider?: string // API provider preset (302ai, glm, minimax, kimi, custom)
mcpServices?: string[] | string | boolean
workflows?: string[] | string | boolean
outputStyles?: string[] | string | boolean
defaultOutputStyle?: string
allLang?: string // Unified language parameter
installCometixLine?: string | boolean // CCometixLine installation control
// Multi-configuration parameters
apiConfigs?: string // JSON string for multiple API configurations
apiConfigsFile?: string // Path to JSON file with API configurations
}
// Update command options
export interface UpdateOptions {
lang?: SupportedLang
force?: boolean
selectedWorkflows?: string[]
}
// CCR command options
export interface CcrOptions {
lang?: SupportedLang
}
// Check updates options
export interface CheckUpdatesOptions {
lang?: SupportedLang
codeType?: CodeToolType | string
}
// Config switch options
export interface ConfigSwitchOptions {
codeType?: CodeToolType | string
list?: boolean
}
// Uninstall options
export interface UninstallOptions {
mode?: 'complete' | 'custom' | 'interactive'
items?: string
lang?: SupportedLang
}
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.
- 5d ago First seen · 224 lines · 0 tokens per session scan A d28b280ee1d0
CLAUDE is a command published in the GitHub repository miounet11/ccjk (46 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,829 tokens. A static security scan graded it A with 0 findings. It is 92% identical to CLAUDE, differing in 8 lines, and is treated as a copy.
Other commands, from other repositories
blueprint
Author a concrete blueprint for a slug — what we wanted (intent) + what we're building now (classes, interfaces, dependencies, module relationships, build order) with Mermaid UML. Optional, after /draft-plan. Presents the draft for accept/edit/reject, then writes to .claude/docs/ /v .md and the Obsidian vault.
new-agents-md
Generate a vendor-neutral AGENTS.md by projecting this Claude-Code instruction corpus — CLAUDE.md tree, architectural rules, warning/feedback landmines, canonical commands — into a flat file other coding agents (Codex, Cursor, Aider, …) can read, then interviewing only for the gaps the corpus can't know.
orchestrate
Goal-directed orchestration & convergence for concurrent work — decompose one goal into interdependent units, place each (shared tree / worktree / serialize), fan out via dispatch, keep on track at dispatch, then verify-and-converge into one coherent result.
checkpoint
Scope-dialed fit-and-intent checkpoint — "does this serve the point + cohere + what did I learn?" at diff / module / corpus zoom. Auto-detects scope (+ --scope override); diff scope composes /code-review + a fit-pass; batches findings and routes them.
coordinate
Keep multiple live Claude sessions aligned via a shared, gitignored session board (.claude/sessions-active.md) — register what this session owns, see what others own, leave hand-off notes, detect file/slug collisions. A session can claim coordinator to assign work to others. No daemon/polling.
extract-conventions
Observe a scope's dominant code conventions and write a project-tier conventions.md that overrides universal defaults for that scope — hybrid deterministic+model detection, per-category propose-confirm, language-pro-delegated authoring.