Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/iofficeai/aionui/package-assistantgit clone --depth 1 https://github.com/iOfficeAI/AionUiWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02135 |
| Opus 5 | $0.00000 | $0.01068 |
| Sonnet 5 | $0.00000 | $0.00427 |
| Haiku 4.5 | $0.00000 | $0.00214 |
Grade A, and why
package-assistant scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
Copies of this mod
1 near-identical copy found in the catalogue:
- package-assistant — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Package OfficeCLI Skill as AionUi Assistant
Convert an OfficeCLI skill into a fully wired AionUi assistant preset, or update an existing one.
Usage
/package-assistant <skill-name> [assistant-id] [avatar]
<skill-name>— Name of the skill directory under/Users/veryliu/Documents/GitHub/officecli/skills/(e.g.officecli-docx,officecli-pptx,officecli-xlsx,officecli-data-dashboard)[assistant-id]— Optional. ID for the new assistant (defaults to<skill-name>-creator)[avatar]— Optional. Emoji avatar (defaults to auto-selected based on skill type)
Arguments: $ARGUMENTS
Before You Start — Detect Mode
Before doing anything, check whether this skill has already been packaged:
- Check if
aionui/src/process/resources/skills/<skill-name>/exists - Check if the assistant-id already appears in
assistantPresets.ts
- Both exist → Update mode: Only re-copy skill files (Step 1). Skip Steps 2–4.
- Neither exists → New mode: Run all steps (1–5).
- Skill exists but assistant doesn't (or vice versa) → Run whichever steps are missing.
Step 1 — Copy Skill Files
- Read all files from
officecli/skills/<skill-name>/(SKILL.md, creating.md, editing.md, reference/, etc.) - Create target directory at
aionui/src/process/resources/skills/<skill-name>/— directory name must be identical to the officecli source directory name (both repos use the sameofficecli-xxxnaming convention) - Copy all files, but apply these transformations to SKILL.md:
- Remove version comments: Delete any
# officecli: vX.X.Xline from inside the frontmatter. AionUi's frontmatter parser (/^---\s*\n([\s\S]*?)\n---/) requires clean YAML — version tracking comments break parsing and skills won't appear in the Skills Center. - Verify
namefield matches directory name: Thenamefield in SKILL.md frontmatter MUST match the skill directory name exactly. Both officecli and aionui use the same directory name (e.g.officecli-docx), so thenamefield should already be correct. If not, fix it. Mismatches cause:params/name must be equal to one of the allowed values. - Keep frontmatter fields:
nameanddescriptionmust stay intact - Keep BEFORE YOU START section: The officecli install/update check section must be preserved — it's critical for users who don't have officecli installed
- Remove version comments: Delete any
- Copy creating.md, editing.md, and any other files (reference/ directories, etc.) as-is
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 175 lines · 0 tokens per session scan A 5a792699a4d8
package-assistant is a command published in the GitHub repository iOfficeAI/AionUi (32,427 stars, last pushed 3d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,135 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
spec-design
Create comprehensive technical design for a specification.
spec-tasks
Generate implementation tasks for a specification.
spec-requirements
Generate comprehensive requirements for a specification.
validate-gap
Analyze implementation gap between requirements and existing codebase.
spec-impl
Execute spec tasks using TDD methodology.
implement
Have Gemini (via agy) implement a task by editing files directly.