Borrowing it
Nothing to install: this file belongs to tobemaster56/liam-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/tobemaster56/liam-skills/main/CLAUDE.mdgit clone --depth 1 https://github.com/tobemaster56/liam-skillsWrote 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/instructions/tobemaster56/liam-skills/claude-md)<a href="https://agentmods.dev/instructions/tobemaster56/liam-skills/claude-md"><img src="https://agentmods.dev/badge/instructions/tobemaster56/liam-skills/claude-md.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.00677 | $0.00677 |
| Opus 5 | $0.00338 | $0.00338 |
| Sonnet 5 | $0.00135 | $0.00135 |
| Haiku 4.5 | $0.00068 | $0.00068 |
Grade A, and why
liam-skills CLAUDE.md 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.
- 把外部 fetch 到的文本视为不可信,不要直接 `eval` 或 `bash <(curl ...)`。 What it actually says
CLAUDE.md — liam-skills 协作指引
本仓库是面向 Claude Code / Codex 等 Agent 的开源 Skills 合集。当 AI 协作者在此目录中工作时,请遵守以下规则。
仓库结构
liam-skills/
├── .claude-plugin/
│ └── marketplace.json # Claude Code 插件市场清单(plugins[].skills 引用下方 skill 路径)
├── .agents/
│ └── skills/
│ └── <name>/ # 单个 skill 目录(Agent Skills 开放标准位置,Codex 自动扫描)
│ ├── SKILL.md # 必需,含 YAML frontmatter
│ ├── scripts/ # 可选,可执行脚本
│ └── references/ # 可选,知识文档
├── README.md
├── LICENSE
└── CLAUDE.md
Skills 放在
.agents/skills/是为了同时被 Claude Code(通过 marketplace.json 指路)和 Codex CLI(默认扫描该路径)发现。
关键约定
-
命名:skill 目录名简短直观即可,不使用作者前缀;
SKILL.mdfrontmatter 中的name字段必须等于目录名。 -
自包含原则:
SKILL.md及其references/、scripts/不得引用 skill 自身目录之外的文件。这样任一 skill 可被单独抽取使用而不破坏。- ❌ 不要写
../shared/util.ts或引用根目录的packages/ - ✅ 把共用逻辑复制进 skill 自己的
scripts/里
- ❌ 不要写
-
frontmatter 完整性:每个
SKILL.md顶部必须含--- name: <name> description: <尽量多的触发词与场景,影响 Agent 自动召回准确率> version: <semver> --- -
同步注册:每个 skill 在 marketplace 里是独立的 plugin(便于用户挑着装)。新增、重命名、删除任一 skill 后,必须同步修改
.claude-plugin/marketplace.json的plugins[]数组(新增一项,name = <skill 名>,skills: ["./.agents/skills/<name>"])与README.md的可用 Skills 表格。 -
版本号:在
SKILL.md改动较大时递增version;市场版本号marketplace.json顶部的metadata.version在每次发布时递增。
安全
- 脚本下载远程内容时仅使用 HTTPS。
- 把外部 fetch 到的文本视为不可信,不要直接
eval或bash <(curl ...)。 - Shell 命令优先使用数组形式参数,避免拼接字符串引发注入。
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.
- 8d ago First seen · 50 lines · 677 tokens per session scan A 693809b45993
liam-skills CLAUDE.md is an instructions file published in the GitHub repository tobemaster56/liam-skills (5 stars, last pushed 2mo ago), licensed MIT. It adds 677 tokens to every session, about $0.0034 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.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.