一键导入
rebuild-includes
Regenerate the dynamic include files (available-agents.md and available-skills.md) by scanning agent and skill directories for frontmatter
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Regenerate the dynamic include files (available-agents.md and available-skills.md) by scanning agent and skill directories for frontmatter
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Bump the V.R.M version across manifest XML, Phing build file, and SQL update file for any Joomla extension project
Summarise the commits on the current branch and write a markdown file suitable for pasting into a Pull Request description
Scan the repository for file modifications and append structured daily entries to the project work log
Record prompts and responses from the current Claude Code session into a structured conversation log
| name | rebuild-includes |
| description | Regenerate the dynamic include files (available-agents.md and available-skills.md) by scanning agent and skill directories for frontmatter |
| disable-model-invocation | true |
| argument-hint | (no arguments) |
Regenerate the dynamically-generated include files that list all available agents and skills. These files are referenced via @includes/ in project CLAUDE.md templates.
E:\repositories\ClaudeCode\includes\available-agents.mdE:\repositories\ClaudeCode\includes\available-skills.mdScan E:\repositories\ClaudeCode\agents\ for all .md files (recursively). For each file, read the YAML frontmatter to extract:
name: — the agent namedescription: — the agent description (use only the first sentence for the table)Determine the category from the file's directory path:
agents/ → Genericagents/joomla/ → Joomlaagents/{other}/ → use {other} as category name (title case)includes/available-agents.mdWrite the file with this structure:
<!-- Auto-generated by /rebuild-includes — do not edit manually -->
### Generic
| Agent | Description |
|-------|-------------|
| `agent-name` | First sentence of description |
### Joomla
| Agent | Description |
|-------|-------------|
| `agent-name` | First sentence of description |
Scan E:\repositories\ClaudeCode\skills\ recursively for all SKILL.md files. For each file, read the YAML frontmatter to extract:
name: — the skill namedescription: — the skill description (use only the first sentence for the table)argument-hint: — example arguments for the skillDetermine the category from the file's directory path:
skills/{skill-name}/SKILL.md (one level deep) → Genericskills/joomla/{skill-name}/SKILL.md → Joomlaskills/{other}/{skill-name}/SKILL.md → use {other} as category name (title case)includes/available-skills.mdWrite the file with this structure:
<!-- Auto-generated by /rebuild-includes — do not edit manually -->
### Generic
| Skill | Description | Example |
|-------|-------------|---------|
| `/skill-name` | First sentence of description | `/skill-name argument-hint` |
### Joomla
| Skill | Description | Example |
|-------|-------------|---------|
| `/skill-name` | First sentence of description | `/skill-name argument-hint` |
argument-hint frontmatter valueAfter generating both files, report: