codewiki-cli

codewiki-cli is a skill for Claude Code, Codex from ItamarZand88/CLI-Anything-WEB. It costs 92 tokens per session (662 once invoked), scanned A, original, MIT.

A command-line browser for Google Code Wiki, a service that provides AI-generated documentation for open-source software repositories. It can search repositories, read wiki sections, download documentation, and ask questions about a codebase.

In plain words
What is it for?
Finding repositories, reading or downloading their documentation, and asking questions about a repository’s architecture or code.
Why use it?
It gives developers a way to learn an unfamiliar open-source project without manually exploring every file first.

Skill for Claude CodeCodex

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/itamarzand88/cli-anything-web/codewiki-cli
Any agent
npx skills add ItamarZand88/CLI-Anything-WEB --skill codewiki-cli
Clone the repo
git clone --depth 1 https://github.com/ItamarZand88/CLI-Anything-WEB

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 codewiki-cli

README.md
[![agentmods](https://agentmods.dev/badge/skills/itamarzand88/cli-anything-web/codewiki-cli.svg)](https://agentmods.dev/skills/itamarzand88/cli-anything-web/codewiki-cli)
Your own site
<a href="https://agentmods.dev/skills/itamarzand88/cli-anything-web/codewiki-cli"><img src="https://agentmods.dev/badge/skills/itamarzand88/cli-anything-web/codewiki-cli.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 662 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.00092 $0.00662
Opus 5 $0.00046 $0.00331
Sonnet 5 $0.00018 $0.00132
Haiku 4.5 $0.00009 $0.00066

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

Security

Grade A, and why

codewiki-cli 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 4d 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.

.claude/skills/codewiki-cli/SKILL.md · 50 lines

How it starts

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

cli-web-codewiki

Google Code Wiki on the command line: repo search, wiki reading, Gemini Q&A about codebases. Repos are referenced by slug org/name (e.g. facebook/react). Install: pip install cli-web-codewiki

Commands

  • repos featured — featured repositories on the homepage
  • repos search QUERY — search repositories. Options: --limit N (default 25), --offset N
  • wiki sections ORG/REPO — table of contents (section titles + descriptions)
  • wiki section ORG/REPO TITLE — one section by title (case-insensitive partial match)
  • wiki get ORG/REPO — full wiki content, all sections
  • wiki download ORG/REPO — save the full wiki as markdown files. Options: -o/--output DIR (default <org>-<repo>-wiki/)
  • chat ask QUESTION --repo ORG/REPO — ask Gemini about the repo's codebase

Examples

# Find a repo, then list its wiki sections
cli-web-codewiki repos search "react" --json
cli-web-codewiki wiki sections excalidraw/excalidraw --json

# Read just the overview section
cli-web-codewiki wiki section facebook/react "Overview" --json

# Ask Gemini about architecture (takes ~5-7s)
cli-web-codewiki chat ask "How does the rendering engine work?" --repo excalidraw/excalidraw --json

# Save a repo's whole wiki locally for offline reading
cli-web-codewiki wiki download kubernetes/kubernetes -o k8s-wiki/

JSON output

Add --json for structured output: {"success": true, "data": ...} on success, {"error": true, "code": "...", "message": "..."} on failure. repos search data: [{slug, github_url, description, avatar_url, stars, updated_at}]. wiki get data: {repo, sections: [{title, level, description, content, code_refs}], section_count}. chat ask data: {answer, repo} where answer is markdown with links to source code.

Utilities

cli-web-codewiki doctor [--json] diagnoses local setup. cli-web-codewiki mcp-serve exposes the commands as MCP tools over stdio.

Agent tips

  • Prefer wiki sections + wiki section over wiki get — full wikis can be very large.
  • Wiki content is markdown with GitHub source links, useful to quote directly.

Read the full file on GitHub · 50 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. 4d ago First seen · 50 lines · 92 tokens per session scan A 7acc47f3a9f8

Subscribe to this mod's changes

codewiki-cli is a skill published in the GitHub repository ItamarZand88/CLI-Anything-WEB (216 stars, last pushed 10d ago), licensed MIT. It adds 92 tokens to every session and 662 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

e2e-testing

End-to-end testing for Falcon Foundry apps using Playwright and @crowdstrike/foundry-playwright. TRIGGER when user asks to "add e2e tests", "add playwright tests", "write end-to-end tests", "test my app", or mentions "e2e", "playwright", or "end-to-end" in the context of testing a Foundry app. DO NOT TRIGGER during…

CrowdStrike/foundry-skills · 116 tokens

e2e-reviewer

Use when reviewing Playwright or Cypress E2E specs, Page Objects (POM), PRs, pull requests, patches, diffs, or changed test files — asked to review tests, audit test quality, or find weak, flaky, or silently-passing tests; when tests pass CI but prove nothing or miss bugs; when auditing missing awaits, vacuous or…

voidmatcha/e2e-skills · 115 tokens

cypress-debugger

Use when a Cypress end-to-end test has already run and failed and the user wants the root cause and a concrete fix. Trigger on a failing Cypress spec, Timed-out-retrying command, unresolved selector, cy.intercept alias or request race, suite-breaking hook, retry-only flake, hydration or timing race, or a…

voidmatcha/e2e-skills · 158 tokens

playwright-debugger

Use when a Playwright end-to-end test has already run and failed and the user wants the root cause and a concrete fix. Trigger on a failing Playwright spec, TimeoutError, broken or ambiguous selector, post-deploy suite failure, retry-only flake, hydration or timing race, or a passes-locally-but-fails-in-CI split.…

voidmatcha/e2e-skills · 163 tokens

playwright-test-generator

Use when someone wants to add, write, create, or scaffold new Playwright end-to-end tests for a page, flow, form, component, uncovered route, or first-project setup. The skill analyzes coverage gaps, explores live pages only on local/disposable or externally isolated approved non-production targets, proposes scenarios…

voidmatcha/e2e-skills · 140 tokens

piyaz

Use when the user wants to plan, decompose, track, or resume a multi-task project: scoping a new idea, importing or onboarding an existing repo or workspace, asking what to work on / what's next / what's blocked / where they left off, reporting task completion, dispatching work in parallel, or planning a draft task.…

FrkAk/piyaz · 155 tokens