一键导入
skill-authoring
When to use skill_create (procedures) vs memory_store (facts)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When to use skill_create (procedures) vs memory_store (facts)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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).