liam-skills: Instructions file for Claude Code

CLAUDE.md

liam-skills CLAUDE.md is an instructions file for Claude Code from tobemaster56/liam-skills. It costs 677 tokens per session, scanned A, original, MIT.

Repository instructions for a collection of coding-agent skills intended for Claude Code and Codex. They describe the folder layout, naming rules, required metadata, and marketplace registration.

In plain words
What is it for?
Use them when creating, renaming, deleting, or reviewing skills in this repository. They cover SKILL.md files, optional scripts and references, and updates to the marketplace manifest.
Why use it?
They give contributors consistent rules for adding and maintaining skills across the repository. This helps the tools discover skills and keeps each skill package self-contained.

Instructions file for Claude Code

Written for Claude Code: Claude Code plugin machinery. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions Codex.

This is tobemaster56/liam-skills's own configuration. It tells Claude Code how to work on liam-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything liam-skills configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/tobemaster56/liam-skills/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/tobemaster56/liam-skills

Made for: Claude Code.

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 liam-skills CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tobemaster56/liam-skills/claude-md.svg)](https://agentmods.dev/instructions/tobemaster56/liam-skills/claude-md)
Your own site
<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>
Per session 677 This file is loaded in full into every session.
When invoked 677 The same file — it is already loaded in full.
Security scan A 1 finding. 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.00677 $0.00677
Opus 5 $0.00338 $0.00338
Sonnet 5 $0.00135 $0.00135
Haiku 4.5 $0.00068 $0.00068

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

Security

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 ...)`。
CLAUDE.md · 50 lines

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(默认扫描该路径)发现。

关键约定

  1. 命名:skill 目录名简短直观即可,不使用作者前缀;SKILL.md frontmatter 中的 name 字段必须等于目录名。

  2. 自包含原则SKILL.md 及其 references/scripts/ 不得引用 skill 自身目录之外的文件。这样任一 skill 可被单独抽取使用而不破坏。

    • ❌ 不要写 ../shared/util.ts 或引用根目录的 packages/
    • ✅ 把共用逻辑复制进 skill 自己的 scripts/
  3. frontmatter 完整性:每个 SKILL.md 顶部必须含

    ---
    name: <name>
    description: <尽量多的触发词与场景,影响 Agent 自动召回准确率>
    version: <semver>
    ---
    
  4. 同步注册:每个 skill 在 marketplace 里是独立的 plugin(便于用户挑着装)。新增、重命名、删除任一 skill 后,必须同步修改 .claude-plugin/marketplace.jsonplugins[] 数组(新增一项,name = <skill 名>skills: ["./.agents/skills/<name>"])与 README.md 的可用 Skills 表格。

  5. 版本号:在 SKILL.md 改动较大时递增 version;市场版本号 marketplace.json 顶部的 metadata.version 在每次发布时递增。

安全

  • 脚本下载远程内容时仅使用 HTTPS。
  • 把外部 fetch 到的文本视为不可信,不要直接 evalbash <(curl ...)
  • Shell 命令优先使用数组形式参数,避免拼接字符串引发注入。
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. 8d ago First seen · 50 lines · 677 tokens per session scan A 693809b45993

Subscribe to this mod's changes

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.

Related

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.

vercel/next.js · 7,296 tokens

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.

openai/codex · 5,153 tokens

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).

microsoft/vscode · 6,785 tokens

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).

microsoft/vscode · 5,001 tokens

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.

langchain-ai/langchain · 4,469 tokens

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.

github/spec-kit · 7,104 tokens