Autonomy
Expand agent capabilities by identifying tasks where human approval adds no value. Systematic delegation.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-autonomy
Repository
Skill path: skills/ivangdavila/autonomy
Expand agent capabilities by identifying tasks where human approval adds no value. Systematic delegation.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install Autonomy into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding Autonomy to shared team environments
- Use Autonomy for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: Autonomy
slug: autonomy
version: 1.0.1
description: Expand agent capabilities by identifying tasks where human approval adds no value. Systematic delegation.
changelog: Limited observation to conversation context, explicit safety boundaries
metadata: {"clawdbot":{"emoji":"π€","requires":{"bins":[]},"os":["linux","darwin","win32"]}}
---
## Data Storage
```
~/autonomy/
βββ tracking.md # What's been delegated, success rates
βββ proposals.md # Pending takeover proposals
βββ rejected.md # User declined, don't re-propose
```
Create on first use: `mkdir -p ~/autonomy`
## Scope
This skill:
- β
Identifies repetitive tasks from conversation history
- β
Proposes delegation opportunities to user
- β
Tracks success rate of delegated tasks
- β NEVER acts autonomously without explicit prior approval
- β NEVER observes outside of conversation context
- β NEVER accesses files/systems to "audit" user activity
- β NEVER monitors calendar/email without permission
## Quick Reference
| Topic | File |
|-------|------|
| Bottleneck detection | `bottlenecks.md` |
| Takeover process | `expansion.md` |
## Core Rules
### 1. Learning Source
Identify delegation candidates ONLY from:
- Explicit user statements ("I always have to do X")
- Repeated requests in conversation ("deploy again", "same as before")
- User complaints about repetitive work
NEVER from:
- Accessing user's calendar/email to find patterns
- Monitoring file changes or system activity
- Any form of surveillance
### 2. Bottleneck Signals (conversation-based)
| Signal | Example |
|--------|---------|
| Repeated request | "Deploy to staging" every PR |
| Rubber-stamp | User always approves without changes |
| Complaint | "I hate doing this every time" |
### 3. Takeover Proposal
When you spot a pattern in conversation:
```
π‘ Delegation opportunity
I noticed: [what you observed in our chats]
Pattern: [how often you've asked for this]
Proposal: I could handle [specific task] without asking each time.
Pilot: First 5x I'll do it and tell you after.
Then: Full autonomy if you're happy.
Want to try?
```
### 4. Expansion Levels
| Level | Description |
|-------|-------------|
| L1 | Do what's asked |
| L2 | Fill gaps, handle edge cases |
| L3 | Own workflows after pilot approval |
**Always requires explicit user approval to move up levels.**
### 5. Tracking
In ~/autonomy/tracking.md:
```
## Delegated
- deploy/staging: approved 2024-01, 50+ successful
- code-review/style: approved 2024-02, 200+ runs
## Pilot Phase
- deploy/production: 3/5 runs, pending full approval
```
### 6. Anti-Patterns
| Don't | Do instead |
|-------|------------|
| Take over without asking | Always propose first |
| Monitor user activity | Only observe conversations |
| Assume after one approval | Confirm scope each time |
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "ivangdavila",
"slug": "autonomy",
"displayName": "Autonomy",
"latest": {
"version": "1.0.1",
"publishedAt": 1771249327703,
"commit": "https://github.com/openclaw/skills/commit/38779b47fcf4f6711edb0b8888387a85f81b2006"
},
"history": [
{
"version": "1.0.0",
"publishedAt": 1770857621593,
"commit": "https://github.com/openclaw/skills/commit/c2ed7cf4ae72892ba682c5529bc977aafa8d069b"
}
]
}
```