Skip to content

Skills

Skills are on-demand capability packs: workflows, scripts, and reference docs. AutoC follows the Agent Skills standard.

Quickstart

Install from the plaza

Browse Skill plaza, then in AutoC:

/skill-install <skill-id>

Or in the shell:

bash
autoc skill install <skill-id>

Installs to global (~/.autoc/agent/skills/) or project (.autoc/skills/). /reload, then /skill:name.

Manual install

Download ZIP → extract to a skills directory above → /reload.

Discovery paths

ScopePath
Global~/.autoc/agent/skills/, ~/.agents/skills/
Project.autoc/skills/, .agents/skills/ (up to git root)
Settingsskills array in settings.json
CLI--skill <path>

--no-skills disables auto-discovery; explicit --skill paths still load.

Reuse Claude Code / Codex skill dirs:

json
{
  "skills": ["~/.claude/skills", "~/.codex/skills"]
}

Commands

FormPurpose
/skill:nameLoad and run skill
/skill:name argsArgs appended as User: <args>

Enable in /settings or enableSkillCommands: true in settings.json.

Authoring

my-skill/
├── SKILL.md              # required
├── scripts/
└── references/

SKILL.md needs frontmatter (name, description required) and body. Paths relative to the skill directory.

markdown
---
name: my-skill
description: What it does and when to use it. Be specific.
---

# My skill

## Usage
...
FieldNotes
namelowercase, hyphens, matches folder, max 64 chars
descriptionmax 1024 chars, drives when to load
disable-model-invocationtrue → user must invoke via /skill:name

Spec: Agent Skills specification. Most validation issues are warnings; skills without description are not loaded.

Repositories

Security

Skills can instruct the model to run arbitrary actions. Review before use.

AUTOSAR BSW AI configuration assistant