Back to Discover

agent-skillset

skill

HernandoR

View on GitHub
0 starsSynced Aug 15, 2026

Install to Claude Code

/plugin marketplace add HernandoR/agent-skillset

README

agent-skillset

Reusable agent skills for engineering workflows, distributed as a plugin marketplace. Loadable by Claude Code, Codex, Pi, and any Agent Plugins client from the same tree — every skill is a directory with a SKILL.md (name + description frontmatter), an agents/openai.yaml interface descriptor, and optional references/, scripts/, and assets/.

Installation

Claude Code

Add the marketplace once:

hernandor/agent-skillset

Then install the bundles you need:

claude plugin install discuss@agent-skillset
claude plugin install implement@agent-skillset
claude plugin install dev-loop@agent-skillset
claude plugin install fetch-external-knowledge@agent-skillset
claude plugin install codex-deepseek-subagent@agent-skillset

Agent Plugins

Each bundle under plugins/ is a standalone Agent Plugins 1.0.0 package: a root plugin.json manifest ($schema + name required, closed schema) with skills discovered from its skills/ directory. Point any conformant Agent Plugins client at a bundle root — plugins/discuss, plugins/implement, plugins/dev-loop, plugins/fetch-external-knowledge, plugins/codex-deepseek-subagent — and it loads the bundle's skills.

Codex

Codex discovers plugin manifests at .codex-plugin/plugin.json, then .claude-plugin/plugin.json, then .cursor-plugin/plugin.json — so each bundle under plugins/ loads as-is, no Codex-specific manifest required. Point Codex at a bundle root (plugins/discuss, plugins/implement, …) and its skills/ directory is scanned recursively for SKILL.md.

To enable or disable individual skills, use config.toml:

[[skills.config]]
name = "decision-grilling"
enabled = true

Pi

The repo is a Pi package — package.json carries the pi-package keyword and a pi.skills glob covering every bundle. Add it to your .pi/settings.json:

{
  "packages": ["agent-skillset"]
}

Or load specific skills only:

{
  "packages": [
    { "source": "agent-skillset", "skills": ["decision-grilling", "adr-driven-development"] }
  ]
}

If you vendor the repo instead of installing it, point at the skill roots directly:

{
  "skills": ["../agent-skillset/plugins/discuss/skills"]
}

Bundles

discuss

Design-time reasoning — ADRs, RFCs, agent spec conventions, decision grilling, and the English-only artifact rule.

Skills: adr-driven-development, agent-spec-convention, decision-grilling, english-only-artifacts

implement

Python project tooling — uv workflows, pydantic config trees, loguru logging, typed interfaces, and centralized path config.

Skills: uv-python-workflow, pydantic-config-tree, loguru-first-logging, typed-interfaces, centralized-path-config

dev-loop

The full development loop — git workflow, worktrees, Justfile recipes, TDD plans, best practices, and verification before completion.

Skills: git-workflow-and-versioning, using-git-worktrees, finishing-a-development-branch, justfile-workflow, development-best-practices, tdd-checkbox-plans, verification-before-completion

fetch-external-knowledge

Fetch knowledge from outside the repo — code intelligence via Codegraph and current library docs via Context7.

Skills: codegraph-usage, context7-docs-first

codex-deepseek-subagent

Offline installer for the DeepSeek V4 Flash custom subagent for Codex.

Skills: install-codex-deepseek-subagent

Rendered live from HernandoR/agent-skillset's GitHub README — not stored, always reflects the source repo.

5 Plugins

NameDescriptionCategorySource
discussADR-driven development, agent spec conventions, decision grilling, and English-only written artifacts./plugins/discuss
implementPython tooling: uv, pydantic config, loguru logging, typed interfaces, path config./plugins/implement
dev-loopGit workflow, versioning, worktrees, Justfile recipes, TDD, and best practices./plugins/dev-loop
fetch-external-knowledgeCode intelligence and docs-first external knowledge retrieval./plugins/fetch-external-knowledge
codex-deepseek-subagentOffline installer for the DeepSeek V4 Flash custom subagent for Codex./plugins/codex-deepseek-subagent

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.