Skip to content

lesterli/braid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Braid

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.

Skills

Skill Description
article-to-insights Turn one article URL into a structured reading result: core summary, relevance analysis, and actionable recommendation.

Install

skills.sh

Install directly from GitHub with an explicit skill name:

npx skills add https://github.com/lesterli/braid --skill article-to-insights

This repo currently contains one skill, but using --skill article-to-insights keeps the command stable if more skills are added later.

Manual install for Codex or Claude Code

Prerequisite: 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 article-to-insights ~/.claude/skills/

# Codex global skills (${CODEX_HOME:-~/.codex}/skills)
mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -r article-to-insights "${CODEX_HOME:-$HOME/.codex}/skills/"

Restart the agent after installation so new skills are discovered.

Compatibility

  • skills.sh: install from this GitHub repo with npx skills add ... --skill article-to-insights
  • SkillsMP: compatible with the open SKILL.md spec and suitable for indexing or listing as-is
  • ClawHub / OpenClaw: each skill directory is publishable as a standalone skill bundle

Skill Structure

Each skill is a self-contained folder:

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)

License

MIT

About

Validated agent skills distilled from real-world practice.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages