Agentic Flake
Description
Composable agent skills and project-scoped environments for Nix.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
agentic-flake
The goal is to keep the API minimal and usable in two common places:
- Home Manager, for user-level configuration
- dev shells, for project-local configuration
Instead of building a large catalog or registry model first, the approach is simple:
- choose a source
- select the plugins you need
- done
quick start
nix flake init -t github:0xc000022070/agentic-flake
nix develop # or `direnv allow`
This scaffolds a minimal dev shell with one catalog skill; edit the `skills` list from there.
Example:
(anthropics.skills {
plugins = [
"pdf"
"pptx"
"frontend-design"
];
})
skill repos outside the catalog
If a skill repository is not already packaged, add it as a non-flake input and point `mkSkill` at it. No rev, no hash — your lockfile pins it:
{
inputs.android-skills = {
url = "github:new-silvermoon/awesome-android-agent-skills";
flake = false;
};
}
(agentic-flake.lib.mkSkill {src = inputs.android-skills;} {
plugins = ["android-emulator-skill"];
})
For umbrella repos (a single `SKILL.md` at the repo root), set `name` to control the skill id — store-path basenames are just `source`, so the derived default is rarely what you want:
(agentic-flake.lib.mkSkill {
src = inputs.some-skill-repo;
name = "my-skill";
} {
plugins = ["my-skill"];
})
`mkSkill` also accepts local paths (`src = ./skills;`) and fetcher results (`pkgs.fetchFromGitHub`, `builtins.fetchGit`) if you prefer explicit pins inside the file. See [examples/4-external-repo](./examples/4-external-repo/) for a complete flake.
upgrading skills
- Catalog skills (
pkgs.agent-skills.*) are pinned by this flake'ssources.jsonand refreshed by CI. Pull the latest pins withnix flake update agentic-flake. - Skills added as flake inputs are pinned by your own lockfile. Upgrade one with
nix flake update. - Need a catalog repo newer than the current pin? Add
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11