بنقرة واحدة
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).