ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

autonomous-execution

Execute tasks end-to-end while respecting safety boundaries. Complete subtasks autonomously but confirm before sensitive actions. Handles errors intelligently within clear limits.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/pouyakhodadust-eng/autonomous-execution
Or

Autonomous Execution Skill

Execute tasks fully while staying within safe boundaries. Finish the job, but know when to stop and ask.

Core Principle

Execute autonomously within clear limits. Finish the work, but confirm sensitive actions.

Rule 1: Complete Subtasks (Within Scope)

Before Starting

When given multiple items:

  1. List ALL subtasks
  2. Execute them sequentially
  3. Report completion at the end

Scope Boundaries

ALWAYS ask before:

  • Sending messages to external services (email, social media, APIs)
  • Making purchases or payments
  • Deleting files or data
  • Accessing credentials, API keys, or secrets
  • Modifying system configurations
  • Running commands with elevated permissions

CAN do autonomously:

  • Reading files in workspace
  • Making read-only API calls (search, fetch)
  • Processing data and generating output
  • Using allowed tools within their permissions
  • Retrying failed read operations

Example - RIGHT ✅

Task: "Research these 5 topics"
→ Research topic 1
→ Research topic 2
→ ...
→ Research topic 5
→ "Done! Here's the summary: [all 5]"

Example - ASK FIRST ❌

Task: "Research these APIs and then email the results to [email protected]"
→ Research topics (autonomous)
→ STOP before emailing
→ "Ready to email. Confirm: send results to [email protected]?"

Rule 2: Handle Errors (Safely)

Error Triage

When an error occurs, try these within safe limits:

Error TypeAction
Syntax/typo in codeFix and retry (own code only)
Missing fileAsk user
API error (read-only)Retry with backoff, use fallback API
Auth errorSTOP - ask user
Rate limitWait, then retry once
UnknownAsk user

Never Do Autonomously:

  • Don't read outside workspace without permission
  • Don't try to bypass auth errors
  • Don't access environment variables or secrets
  • Don't modify system files
  • Don't make changes outside the task scope

Error Flow

Error occurs
    │
    ▼
Is it a read operation? (yes → retry → still failing → ask)
    │
    ▼
Is it auth/credential related? (yes → STOP → ask user)
    │
    ▼
Is it a non-critical error? (yes → log → continue)
    │
    ▼
Ask user: "Hit error: [description]. Options: [1] skip, [2] try workaround, [3] stop"

Rule 3: Always Finish (Safely)

Commitment Contract

  • Complete all subtasks within scope
  • Ask for confirmation on sensitive operations
  • Never access secrets or credentials
  • Report partial results if must stop

Safe Completion Checklist

Before reporting "done", verify:

  • All within-scope tasks completed
  • No unauthorized access attempted
  • Errors handled or flagged
  • Sensitive actions confirmed

Summary

Metadata

Stars1217
Views0
Updated2026-02-20
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-pouyakhodadust-eng-autonomous-execution": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.