No description
  • JavaScript 87.2%
  • TypeScript 12.2%
  • HTML 0.6%
Find a file
2026-07-01 08:08:18 +02:00
skills feat: seed agent-skills source with 28 skills 2026-07-01 07:44:26 +02:00
.gitignore feat: seed agent-skills source with 28 skills 2026-07-01 07:44:26 +02:00
AGENTS.md chore: add generated agent instruction files 2026-07-01 08:08:18 +02:00
CLAUDE.md chore: add generated agent instruction files 2026-07-01 08:08:18 +02:00
README.md feat: seed agent-skills source with 28 skills 2026-07-01 07:44:26 +02:00

agent-skills

Source of skills and rules delivered per-run into AI coding agents by axskills.

axskills fetches this repository (j4k/agent-skills on code.j4k.dev, main) as a zip archive, caches it, and copies the skills and rules you select into a throwaway config overlay for a single agent launch — nothing here is written permanently into ~/.claude, ~/.codex, and the like.

Layout

skills/
  <skill-name>/
    SKILL.md            # YAML frontmatter with `name` + `description`, then the skill body
    <supporting files>  # optional references, scripts, assets — copied verbatim
rules/
  <category>/
    <rule>.md           # optional; concatenated into the agent's rules file (CLAUDE.md, AGENTS.md, …)

The directory name under skills/ is the selectable skill name. description from the frontmatter is what the picker shows.

Usage

# List what this source provides
axskills list

# Pick skills/rules to remember for the current repo, then launch an agent
axskills select
axskills run claude

# Author against a local checkout instead of the published source
axskills list --source .

Adding a skill

Create skills/<name>/SKILL.md with name and description frontmatter, commit, and push. The next axskills fetch --refresh (or any run with --refresh) picks it up.