Agent skill
oracle
Run long AI queries with Oracle CLI. Use for code reviews, summarization, or analysis that takes time. Always run in tmux.
Install this agent skill to your Project
npx add-skill https://github.com/mrud/skills/tree/main/oracle
SKILL.md
Oracle CLI
Run long-running AI queries. Always run in tmux so sessions persist.
Usage
# Run query (in tmux!)
oracle -p "Summarize the risk register" \
--slug risk-register-summary \
--file docs/risk-register.md docs/risk-matrix.md
# Code review
oracle -p "Review the TS data layer" \
--slug review-ts-data-layer \
--file "src/**/*.ts" \
--file "!src/**/*.test.ts"
# Audit
oracle -p "Audit data layer" \
--slug audit-data-layer \
--file "src/**/*.ts" \
--file README.md
Slug Naming
Choose descriptive slugs based on:
- The task being performed
- The project context
- Make it meaningful for later reference
Session Management
# Check status
oracle status
# Prune old runs (1 week)
oracle status --clear --hours 168
# Replay a session
oracle status # List runs, get ID
oracle session <id> # Replay locally
Tips
- Run in tmux:
tmux new -s oracle-run - Reattach later:
tmux attach -t oracle-run - Kill when done
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
taskwarrior
Track work items using Taskwarrior. Use when managing tasks, tracking PRs, or organizing work. Always use UUID instead of task ID.
zrok
Share local services publicly or privately via secure tunnels. Use when needing to expose localhost ports, share dev servers, create public URLs for local services, or set up secure tunnels between machines.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
scaffold-exercises
Create exercise directory structures with sections, problems, solutions, and explainers that pass linting. Use when user wants to scaffold exercises, create exercise stubs, or set up a new course section.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
obsidian-vault
Search, create, and manage notes in the Obsidian vault with wikilinks and index notes. Use when user wants to find, create, or organize notes in Obsidian.
Didn't find tool you were looking for?