Overview
- Skill Key
- g9pedro/agent-autonomy-primitives
- Author
- g9pedro
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/g9pedro/agent-autonomy-primitives
- Latest Commit SHA
- 8f4d56903a8424980756771d451210b7d1dda177
Build long-running autonomous agent loops using ClawVault primitives (tasks, projects, memory types, templates, heartbeats). Use when setting up agent autonomy, creating task-driven execution loops, customizing primitive schemas, wiring heartbeat-based work queues, or teaching an agent to manage its own backlog. Also use when adapting primitives to an existing agent setup or designing multi-agent collaboration through shared vaults.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 agent-autonomy-primitives 技能。 若已安装,则直接安装 agent-autonomy-primitives 技能。
# Agent Autonomy Primitives Turn any AI agent into a self-directing worker using five composable primitives: **typed memory**, **task files**, **project grouping**, **template schemas**, and **heartbeat loops**. ## Prerequisites ```bash npm install -g clawvault clawvault init ``` ## The Five Primitives ### 1. Typed Memory Every memory has a type. The type determines where it lives and how it's retrieved. | Type | Directory | When to Use | |------|-----------|-------------| | `decision` | `decisions/` | Recording a choice with rationale | | `lesson` | `lessons/` | Something learned from experience | | `person` | `people/` | Contact info, relationship context | | `commitment` | `commitments/` | Promise made, deliverable owed | | `preference` | `preferences/` | How someone likes things done | | `fact` | `inbox/` | Raw information to file later | | `project` | `projects/` | Workstream with goals and status | Store with type: ```bash clawvault remember decision "Chose Resend over SendGrid" --content "Lower cost, better DX, webhook support" clawvault remember lesson "LLMs rewrite keywords during compression" --content "Always post-process with regex" ``` **Rule:** If you know WHAT KIND of thing it is, use the right command. Dumping everything into daily notes defeats retrieval later. ### 2. Task Primitives A task is a markdown file with YAML frontmatter in `tasks/`: ```yaml --- status: open priority: high owner: your-agent-name project: my-project due: 2026-03-01 tags: [infrastructure, deploy] estimate: 2h --- # Deploy API to production ## Context Server provisioned. Need Dockerfile fix. ## Next Steps - Fix binding to 0.0.0.0 - Add health endpoint - Push and verify ``` Create tasks: ```bash clawvault task add "Deploy API to production" \ --priority high \ --owner my-agent \ --project my-project \ --due 2026-03-01 \ --tags "infrastructure,deploy" ``` Update status: ```bash clawvault task update deploy-api-to-production --status in-progress clawvau...
aicodelion
🚀 Clone your OpenClaw AI Agent to a new device in ~25 minutes — configs, memory, skills, everything.
cacheforge-ai
⚡ SOTA agent skills for OpenClaw — observability, security, code quality, incident response, and more. Built by Anvil AI.
zjianru
OpenClaw Skill: Safely restart the Gateway with context preservation, guardian watchdog, and multi-channel notification
jgm2025
Automated Linux server patching with PatchMon integration for OpenClaw
human-pages-ai
Search and hire real humans for tasks — photography, delivery, research, and more
zseven-w
Reusable skill templates for OpenClaw AI agents. Templates for API integration, data processing, web scraping, CLI tools, and file processing.