Just a place to incubate and play with skills or related things.
There is a skill-creator skill from Anthropic if you want agents to create skills. To add to your ~/.claude:
bunx skills add anthropics/skills -g --agent claude-code --skill skill-creatorChange --agent for your editor if supported.
The main skill of interest here is the nullables skill. This is a skill for writing code that loosely follows James Shore's nullable pattern
To add to a project:
bunx skills add danielbush/skills --agent claude-code --skill nullablesTo update, just re-run the above.
To validate:
uvx \
--from "git+https://github.com/agentskills/agentskills.git#subdirectory=skills-ref" \
skills-ref \
validate skills/nullablesNote that agentsksills repo is a reference implementation.