Validated agent skills distilled from real-world practice.
This repository follows the open SKILL.md directory format used across agent ecosystems, including Codex, Claude Code, skills.sh, SkillsMP, and ClawHub/OpenClaw.
| Skill | Description |
|---|---|
| article-to-insights | Turn one article URL into a structured reading result: core summary, relevance analysis, and actionable recommendation. |
| daily-curator | Generate a curated daily reading list of high-quality articles from trusted sources, with scoring, dedup, and a persistent reading queue. |
| profile-audit | Diagnose a 小红书 / Twitter profile from a screenshot. Scoped to service-providing OPC (designer / consultant / coach / freelancer / SaaS founder). Scores 5 funnel-aligned dimensions with binary sub-checks, returns a band score and concrete improvement edits. |
Install interactively:
npx skills@latest add lesterli/braidInstall directly from GitHub with an explicit skill name:
npx skills@latest add lesterli/braid --skill article-to-insights
npx skills@latest add lesterli/braid --skill daily-curator
npx skills@latest add lesterli/braid --skill profile-auditUse --skill <skill-name> to install exactly the skill you want.
You can also install a single skill by GitHub tree URL:
npx skills@latest add https://github.com/lesterli/braid/tree/main/skills/daily-curatorInstall an individual skill from the repo path:
hermes skills install lesterli/braid/skills/daily-curatorOr add this repo as a Hermes tap. Hermes taps default to the skills/
directory, which is this repo's layout:
hermes skills tap add lesterli/braid
hermes skills install lesterli/braid/daily-curatorPrerequisite: the corresponding agent CLI is already installed.
# Clone the repo
git clone https://github.com/lesterli/braid.git
cd braid
# Claude Code global skills (~/.claude/skills)
mkdir -p ~/.claude/skills
cp -r skills/article-to-insights ~/.claude/skills/
cp -r skills/daily-curator ~/.claude/skills/
cp -r skills/profile-audit ~/.claude/skills/
# Codex global skills (${CODEX_HOME:-~/.codex}/skills)
mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -r skills/article-to-insights "${CODEX_HOME:-$HOME/.codex}/skills/"
cp -r skills/daily-curator "${CODEX_HOME:-$HOME/.codex}/skills/"
cp -r skills/profile-audit "${CODEX_HOME:-$HOME/.codex}/skills/"Restart the agent after installation so new skills are discovered.
skills.sh: install from this GitHub repo withnpx skills@latest add ... --skill <skill-name>- Hermes Agent: install a skill directly with
hermes skills install lesterli/braid/skills/<skill-name>, or add the repo as a tap. - SkillsMP: compatible with the open
SKILL.mdspec and suitable for indexing or listing as-is - ClawHub / OpenClaw: each skill directory is publishable as a standalone skill bundle
Each skill is a self-contained folder:
skills/
skill-name/
SKILL.md # Entry point: trigger rules, workflow, output format
references/ # Supporting docs: examples, guardrails, format specs
scripts/ # Helper scripts for validation or preprocessing
agents/ # Agent-specific configs (e.g., OpenAI, Claude)
MIT