with one click
skill-authoring
When to use skill_create (procedures) vs memory_store (facts)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
When to use skill_create (procedures) vs memory_store (facts)
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Communicate with other abtars agents — delegate tasks, ask questions
Full browser capability — managed Browsie session or emergency Main direct mode
Fetch web content — 4-level escalation chain from curl to full browser
Find the best free cloud models and update models.json from OpenRouter leaderboard
Fetch Twitter/X content — single tweets (no auth) or feeds (cookies)
Search, install, and update community skills from ClawHub (clawhub.ai)
| name | skill-authoring |
| description | When to use skill_create (procedures) vs memory_store (facts) |
All skill output MUST go to ~/.abtars/workspace/<skill-name>/.
All skill/task output goes to ~/.abtars/workspace/<skill-or-task-name>/. No exceptions. The workspace directory is the skill's sandbox — keeps outputs organized, discoverable, and isolated.
Examples:
~/.abtars/workspace/twitterX/output/~/.abtars/workspace/browse/~/.abtars/workspace/topics/skill_creatememory_store instead# Clear stale Node modules after upgrade
## When to use
Node app fails to start with "Cannot find module" errors after upgrading a dependency.
## How
1. Delete node_modules and package-lock.json
2. Run `npm install`
3. Restart the affected service
## Why
Stale lockfiles reference module versions that no longer exist. A clean install resolves current versions.
<skill-name>/
├── SKILL.md ← required: description + instructions
├── scripts/ ← optional: executable scripts (py, sh, js)
└── references/ ← optional: reference docs
Rules for scripts:
<skill>/scripts/. Never at the skill root.requires.bins or requires.packages. The user installs it system-wide.chmod +x).