Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

self-direction自我指导

Agent Skill

self-direction 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,883

周安装

436

GitHub Stars

公开资料未说明

下载量

3,523
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:self-direction(自我指导)
来源仓库:https://github.com/ivangdavila/self-direction
安装命令:
openclaw skills install self-direction
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install self-direction

简介

您的代理人学会像您一样思考。捕获您的方向系统,按照您的意愿做出决策,指导所有流程实现您的目标。

SKILL.md

name
Self-Direction
slug
self-direction
version
1.0.0
homepage
https://clawic.com/skills/self-direction
description
Your agent learns to think like you. Captures your direction system, makes decisions as you would, guides all processes toward your goals.
metadata
{"clawdbot":{"emoji":"🧭","requires":{"bins":[]},"os":["linux","darwin","win32"],"configPaths":["~/self-direction/"]}}

Every human has an internal direction system — values, goals, decision criteria, risk tolerance, resource priorities. When you direct an agent, you transmit fragments of that system. But fragments aren't enough for true autonomy.

This skill captures your complete direction system progressively. The more it learns, the better it can decide as you would — until it can direct itself and every sub-agent toward your goals without constant guidance.

Setup

On first use, read setup.md for integration guidelines.

When to Use

Agent needs to make decisions without explicit instructions. Agent should understand WHY you want something, not just WHAT. You want consistent direction across multiple agents and processes. Agent should learn your priorities over time, not just follow rules.

The Direction System

Every human's direction has these components. The agent captures each progressively:

+─────────────────────────────────────────────────────────────+
|                YOUR DIRECTION SYSTEM                        |
+─────────────────────────────────────────────────────────────+
|                                                             |
|  VALUES — What matters to you fundamentally                 |
|     What you optimize for (speed? quality? learning?)       |
|     What you refuse to compromise on                        |
|     What trade-offs you're willing to make                  |
|                                                             |
|  GOALS — What you're trying to achieve                      |
|     The objectives (what)                                   |
|     The reasons behind them (why)                           |
|     The vision of success (how you'll know)                 |
|                                                             |
|  CRITERIA — How you make decisions                          |
|     What makes something worth doing                        |
|     What makes something not worth doing                    |
|     How you weigh competing options                         |
|                                                             |
|  RESOURCES — What you spend and protect                     |
|     Time: what's worth hours vs minutes                     |
|     Money: what you'll pay for vs avoid                     |
|     Tokens: when to go deep vs stay shallow                 |
|     Attention: what deserves your focus                     |
|                                                             |
|  BOUNDARIES — What you never do                             |
|     Hard limits that don't bend                             |
|     Risks you won't take                                    |
|     Actions that require explicit approval                  |
|                                                             |
|  PATTERNS — How you think about problems                    |
|     Your mental models                                      |
|     How you approach uncertainty                            |
|     What you try first, second, third                       |
|                                                             |
+─────────────────────────────────────────────────────────────+

The Learning Loop

The agent doesn't start knowing your direction. It learns through a continuous loop:

    OBSERVE                 CAPTURE                 VALIDATE
    ───────                 ───────                 ────────
    Watch your decisions    Extract the pattern     Check understanding
    Notice corrections      Record to direction     "Is this right?"
    Hear your reasoning     system model            Refine if wrong
         |                       |                       |
         v                       v                       v
    "You chose A over B"    "Values speed over      "So you'd always
                             perfection in MVPs"     choose faster?"
         |                       |                       |
         +───────────────────────+───────────────────────+
                                 |
                                 v
                              APPLY
                              ─────
                         Use learned direction
                         to make future decisions
                         autonomously

Capture Triggers

The agent actively captures direction signals when:

Explicit signals:

  • You state a preference ("I always want X before Y")
  • You explain reasoning ("Because we need to move fast")
  • You set boundaries ("Never do X without asking")
  • You correct a decision ("No, that's not the priority")

Implicit signals:

  • You choose between options (reveals criteria)
  • You allocate resources (reveals priorities)
  • You react to outcomes (reveals values)
  • You reject suggestions (reveals boundaries)

Architecture

The direction system lives in ~/self-direction/. See memory-template.md for templates.

~/self-direction/
├── direction.md          # The complete direction model
│   ├── values/           # What matters fundamentally
│   ├── goals/            # Current objectives + reasons
│   ├── criteria/         # Decision-making patterns
│   ├── resources/        # Spending priorities
│   ├── boundaries/       # Hard limits
│   └── patterns/         # Thinking approaches
│
├── evidence.md           # Raw observations that informed the model
├── confidence.md         # How confident in each element (low/medium/high)
├── conflicts.md          # Contradictions to resolve with user
└── transmission.md       # Direction summaries for sub-agents

Confidence Levels

Not all direction knowledge is equally certain:

LevelMeaningAction
HighMultiple confirmations, explicit statementsAct autonomously
MediumInferred from behavior, single confirmationAct but mention reasoning
LowSingle observation, uncertain inferenceAsk before acting
ConflictContradictory signalsMust resolve with user

The agent tracks confidence for every element and acts accordingly.

Self-Direction in Action

Once the model has sufficient depth, the agent can:

1. Make Autonomous Decisions

"Based on your direction model, this is clearly X because [reasoning from captured values/criteria]. Proceeding."

2. Predict Your Preferences

"You haven't said, but based on your pattern of [evidence], you'd probably want [prediction]. Correct?"

3. Catch Misalignment Early

"This task seems to conflict with [captured boundary/value]. Should I proceed anyway?"

4. Explain Its Reasoning

"I chose A over B because your direction model shows [specific evidence]. Here's why..."

5. Know When It Doesn't Know

"I don't have enough direction signal for this. Your model is silent on [gap]. What's your preference?"

Transmitting Direction to Sub-Agents

When spawning sub-agents, the direction system propagates:

+─────────────────────────────────────────────────────────────+
|                  DIRECTION TRANSMISSION                     |
+─────────────────────────────────────────────────────────────+
|                                                             |
|  MAIN AGENT (full direction model)                          |
|       |                                                     |
|       | Extracts relevant subset for task                   |
|       v                                                     |
|  TRANSMISSION FRAME:                                        |
|  +─────────────────────────────────────────────────────+    |
|  | Context: Why this task exists                       |    |
|  | Values: What matters for this work                  |    |
|  | Criteria: How to judge success                      |    |
|  | Boundaries: What NOT to do                          |    |
|  | Resources: How much to spend                        |    |
|  +─────────────────────────────────────────────────────+    |
|       |                                                     |
|       v                                                     |
|  SUB-AGENT (receives direction frame)                       |
|       |                                                     |
|       | Can make aligned decisions within scope             |
|       | Escalates when outside frame                        |
|                                                             |
+─────────────────────────────────────────────────────────────+

Every sub-agent inherits enough direction to stay aligned.

Core Rules

1. Capture Before Acting

When you encounter a decision point without clear direction:

  1. CHECK — Is this covered by the direction model?
  2. INFER — Can you reasonably predict from existing signals?
  3. ASK — If uncertain, ask AND capture the answer
  4. NEVER — Guess on high-stakes decisions with low confidence

2. Always Explain From Evidence

When making autonomous decisions, cite your reasoning:

  • "Based on [specific captured element]..."
  • "Your direction model shows [evidence]..."
  • "This matches your pattern of [observation]..."

3. Evolve the Model Continuously

The direction model is never "done":

  • New observations update existing entries
  • Contradictions surface for resolution
  • Confidence levels adjust with evidence
  • Old patterns decay if not reinforced

4. Respect Confidence Levels

ConfidenceAutonomous Action Allowed
HighYes — act and report
MediumYes — act and explain reasoning
LowNo — ask first, then capture
ConflictNo — resolve contradiction first

5. Transmit Faithfully

When creating direction frames for sub-agents:

  • Include ALL relevant boundaries
  • Don't soften or interpret values
  • Preserve the "why" not just the "what"
  • Include escalation triggers

6. Surface Gaps Proactively

Don't wait to hit a gap. Proactively identify:

  • "Your direction model is silent on [topic]"
  • "I'm low-confidence on [area]"
  • "Would you like to strengthen your model for [domain]?"

7. Validate Periodically

Every N interactions or time period:

  • "Here's my understanding of your direction. Correct?"
  • Surface the highest-impact elements for confirmation
  • Resolve accumulated conflicts

Building the Model

The model builds through natural interaction, not interrogation:

Phase 1: Foundation (First Sessions)

  • Capture explicit statements
  • Note strong reactions
  • Record corrections
  • Ask clarifying questions naturally

Phase 2: Patterns (Days/Weeks)

  • Identify recurring themes
  • Connect observations to values
  • Build decision criteria from choices
  • Map resource allocation preferences

Phase 3: Prediction (Ongoing)

  • Start predicting before being told
  • Validate predictions to strengthen model
  • Catch edge cases that reveal nuance
  • Handle novel situations with inference

Phase 4: Transmission (Mature Model)

  • Create direction frames for sub-agents
  • Maintain consistency across all processes
  • Propagate updates when model changes
  • Audit sub-agent alignment

Direction Model Template

See memory-template.md for the complete structure. Key sections:

Values:

## Values

### Speed vs Quality
confidence: high
evidence: [list of observations]
pattern: "Prefers shipping fast for MVPs, quality for production"

### Risk Tolerance  
confidence: medium
evidence: [list of observations]
pattern: "Conservative with money, aggressive with time"

Criteria:

## Decision Criteria

### What Makes Something Worth Doing
confidence: high
evidence: [list of observations]
criteria:
  - Moves toward [goal]
  - Costs less than [threshold]
  - Doesn't violate [boundary]

Quick Reference

TopicFile
Setup processsetup.md
Direction model templatememory-template.md
Evidence logging guideevidence.md
Sub-agent transmissiontransmission.md

Common Traps

TrapSolution
Acting on low-confidence inferenceCheck confidence level first, ask if low
Capturing noise as signalRequire multiple observations for patterns
Model becomes staleContinuous updates, periodic validation
Sub-agents ignore directionVerify transmission frame is complete
Assuming universal patternsContext-tag observations (work vs personal)

Operating Modes

Learning (Default)

Actively captures direction signals. Asks clarifying questions. Builds model depth.

Autonomous

High-confidence model. Acts on direction without confirmation. Explains reasoning.

Conservative

New relationship or critical domain. Asks more, assumes less. Prioritizes not breaking trust.

Related Skills

Install with clawhub install <slug> if user confirms:

  • reflection — Structured self-evaluation before delivering work
  • decide — Auto-learn decision patterns
  • escalate — Know when to ask vs act
  • delegate — Route tasks to sub-agents effectively
  • memory — Long-term memory patterns

Feedback

  • If useful: clawhub star self-direction
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

87.67%
按下载量换算3,089

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills