by tamdogood
A repository for skills that are essential to my daily work
# Add to your Claude Code skills
git clone https://github.com/tamdogood/builder-essential-skillsGuides for using ai agents skills like builder-essential-skills.
builder-essential-skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by tamdogood. A repository for skills that are essential to my daily work. It has 53 GitHub stars.
builder-essential-skills's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/tamdogood/builder-essential-skills" and add it to your Claude Code skills directory (see the Installation section above).
builder-essential-skills is primarily written in Python. It is open-source under tamdogood on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh builder-essential-skills against similar tools.
No comments yet. Be the first to share your thoughts!
Unlocks once the catalog security scan passes (runs nightly).
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
Install with the skills.sh CLI:
npx skills add tamdogood/skills
Install one skill from the collection:
npx skills add tamdogood/skills --skill lead
The skills.sh page for this repository is
skills.sh/tamdogood/skills. It appears
after the repository has been installed through the skills CLI and the
skills.sh cache refreshes.
You can also use the bundled npm installer.
Install every skill for your user account:
npx @tamng0905/builder-essential-skills
Install into the repository you are currently in:
npx @tamng0905/builder-essential-skills --project
Install only one skill:
npx @tamng0905/builder-essential-skills --skill lead
Add --project to that command to install the selected skill into the current
repository. Restart Claude Code or Codex after installation.
Every skill lives in skills/<name>/SKILL.md. Some also ship scripts,
reference material, or agent definitions that support the workflow.
An AI agent is much more useful when it has a repeatable way to handle the work. This collection packages practical workflows as portable skills: compact instructions, scripts, references, and agent definitions that you can install, adapt, and share.
Use the whole collection, or take only the skills your team needs.
Use the local scripts only when you are installing from a cloned checkout.
From the repository root, install every skill for the current user:
./install.sh
The npx command installs the same files as the scripts below. It supports
macOS, Linux, and Windows wherever Node.js 18 or newer is available.
On Windows:
./install.ps1
Restart Claude Code or Codex, then invoke a skill in plain English:
/lead Build the smallest version of this feature and open a PR.
$async-learning-teacher Teach me this paper step by step: https://arxiv.org/abs/...
$map-the-landscape Show me how this repository fits together.
Want to try the collection inside one repository first? Install it locally instead:
./install.sh --project
./install.ps1 -Project
The project install uses .claude/skills and .codex/skills, so it stays
with that repository rather than changing your user-level setup.
The installers copy each folder in skills/ to the right location for your
agent and install the lead builder and reviewer agents for Claude Code.
| Install mode | Claude Code | Codex |
|---|---|---|
| User | ~/.claude/skills |
${CODEX_HOME:-~/.codex}/skills |
| Current project | .claude/skills |
.codex/skills |
You will need Claude Code and/or Codex, depending on which agent you use.
Python 3 is required for the lead routing helper and the
session-profiler tools. The Codex CLI is optional, but lead can use it for
builder jobs:
npm i -g @openai/codex@latest
leadlead and lead-research can assign different models to roles such as
lead, builder, reviewer, researcher, scout, and critic. Inspect the active
routing before a run:
python skills/lead/config.py
python skills/lead/config.py --role builder
python skills/lead/config.py --check
Defaults live in skills/lead/config.py and skills/lead/models.json. Use
.lead/config for a repository override or ~/.lead/config for a personal
default.
After installation, point SP at the wrapper for Hermes:
SP="${HERMES_HOME:-$HOME/.hermes}/skills/session-profiler/scripts/sp"
Then explore your sessions:
$SP list --provider hermes --n 20
$SP info <session-id-or-jsonl-path>
$SP parse <session-id-or-jsonl-path>
$SP brief
$SP agent-summary
$SP costs
$SP slowest-tools --n 20
$SP errors
$SP turns
Generate richer artifacts:
$SP toc
$SP review
$SP trace
brief writes a scan-friendly brief.md with headline metrics, standout slow
paths or failures, a prompt trail or TOC storyline, and an agent scoreboard. The
Perfetto trace adds an overview lane, labeled TOC phases, per-agent work lanes,
prompt lanes, and cumulative token/cost counters.
Cost reports are estimates based on public model pricing, not billing records. Session files and traces can include prompts, code, file paths, and other sensitive project context. Review them before sharing.
skills/ The skill collection
<skill>/SKILL.md Each skill's entry point and workflow
assets/readme-hero.png README banner
.claude/agents/ Builder and reviewer agents for lead
install.sh macOS/Linux installer
install.ps1 Windows installer
package.json npm package metadata and npx entrypoint
bin/builder-essential-skills.js cross-platform npx installer
Choose an available npm package name in package.json, authenticate with npm,
then publish from the repository root:
npm login
npm publish --access public
npm requires either 2FA enabled on the account, followed by the one-time code
requested by npm publish, or a granular access token with read/write access
and Bypass two-factor authentication enabled. For a local interactive
publish, enabling 2FA and running npm login again is the simplest option.
Never commit an access token; use npm's login flow or a secure CI secret.
After publishing, users can run npx @tamng0905/builder-essential-skills without cloning the
repository. Bump the version in package.json for each subsequent publish.
Start with one folder:
skills/my-skill/
SKILL.md
Give SKILL.md clear frontmatter and a focused workflow:
---
name: my-skill
description: Explain when an agent should use this skill.
---
# My Skill
Write the workflow, rules, examples, and expected output here.
Keep skills easy to move between projects: