Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

auto-drive-jim汽车驾驶吉姆

Agent Skill

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

总安装

11,829

周安装

488

GitHub Stars

公开资料未说明

下载量

3,865
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install auto-drive-jim

简介

auto-drive-jim 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中维护前端项目或生成组件时使用。

  • 适用于需要自动化生成界面代码、检查实现细节或提升开发效率的场景。
  • 通过 clawhub 安装,命令为 openclaw skills install auto-drive-jim,需结合来源仓库进一步确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前功能描述基于原始 README,实际能力以官方文档为准。

SKILL.md

name
auto-drive
description
Upload and download files to Autonomys Network permanent decentralized storage via Auto-Drive. Save memories as a linked-list chain for resurrection — rebuild full agent context from a single CID.
metadata
openclaw
emoji
🧬
primaryEnv
AUTO_DRIVE_API_KEY
requires
bins
["curl", "jq", "file"]
env
["AUTO_DRIVE_API_KEY"]
install
kind
brew
formula
jq
bins
["jq"]
label
Install jq (brew)

Auto-Drive Skill

Permanent decentralized storage on the Autonomys Network with linked-list memory chains for agent resurrection.

What This Skill Does

  1. Upload files to Auto-Drive and get back a CID (Content Identifier) — a permanent, immutable address on the Autonomys distributed storage network.
  2. Download files from Auto-Drive using a CID — uses the authenticated API if a key is set, otherwise falls back to the public gateway.
  3. Save memories as a chain — each memory entry is a JSON experience with a header.previousCid pointer, forming a linked list stored permanently on-chain.
  4. Resurrect from a chain — given the latest CID, walk the chain backwards to reconstruct full agent history.

When To Use This Skill

  • User says "save this to Auto-Drive" or "upload to Autonomys" or "store permanently"
  • User says "download from Auto-Drive" or provides a CID to retrieve
  • User says "save memory", "remember this permanently", or "checkpoint"
  • User says "resurrect", "recall chain", "rebuild memory", or "load history"
  • Any time the user wants data stored permanently and immutably on a decentralized network

Configuration

API Key

Requires an AUTO_DRIVE_API_KEY. Run the guided setup script for the easiest path:

scripts/setup-auto-drive.sh

This opens explorer.ai3.storage in your browser, prompts for the key, saves it to ~/.openclaw/.env, and verifies the connection.

Manual setup:

  1. Navigate to https://explorer.ai3.storage (not ai3.storage — that's just the landing page)
  2. Check authentication: if the sidebar shows a "Log In" button or lock icons on My Files / Profile / Developers, you are not signed in
  3. AI agent note: You cannot complete OAuth yourself. Open the browser for the user and ask them to sign in via Google, GitHub, or Discord. Once the user confirms they're signed in, take over — or simply ask the user to paste the API key directly
  4. Once authenticated, click Developers in the left sidebar
  5. Click Create API Key and copy the generated key

Then set the key via:

  • Environment: export AUTO_DRIVE_API_KEY=your_key_here
  • OpenClaw config: skills.entries.auto-drive.apiKey

The API key is required for uploading, saving memories, and recalling the memory chain. It is optional for general file downloads — without it, the public gateway is used and files are returned as stored (i.e. compressed files will not be decompressed).

Core Operations

Upload a File

scripts/autodrive-upload.sh <filepath> [--json] [--compress]

Uploads a file to Auto-Drive mainnet using the 3-step upload protocol (single chunk). Returns the CID on stdout. Requires AUTO_DRIVE_API_KEY.

  • --json — force MIME type to application/json
  • --compress — enable ZLIB compression

Download a File

scripts/autodrive-download.sh <cid> [output_path]

Downloads a file by CID. Uses the authenticated API if AUTO_DRIVE_API_KEY is set (decompresses server-side), otherwise uses the public gateway (files returned as stored). If output_path is omitted, outputs to stdout.

Save a Memory Entry

scripts/autodrive-save-memory.sh <data_file_or_string> [--agent-name NAME] [--state-file PATH]

Creates a memory experience with the Autonomys Agents header/data structure:

{
  "header": {
    "agentName": "my-agent",
    "agentVersion": "1.0.0",
    "timestamp": "2026-02-14T00:00:00.000Z",
    "previousCid": "bafk...or null"
  },
  "data": {
    "type": "memory",
    "content": "..."
  }
}
  • If the first argument is a file path, its JSON contents become the data payload.
  • If the first argument is a plain string, it is wrapped as {"type": "memory", "content": "..."}.
  • --agent-name — set the agent name in the header (default: openclaw-agent or $AGENT_NAME)
  • --state-file — override the state file location

Uploads to Auto-Drive and updates the state file with the new head CID. Also pins the latest CID to MEMORY.md if that file exists in the workspace.

Returns structured JSON on stdout:

{"cid": "bafk...", "previousCid": "bafk...", "chainLength": 5}

Recall the Full Chain

scripts/autodrive-recall-chain.sh [cid] [--limit N] [--output-dir DIR]

If no CID is given, reads the latest CID from the state file. Walks the linked list from newest to oldest, outputting each experience as JSON.

  • --limit N — maximum entries to retrieve (default: 50)
  • --output-dir DIR — save each entry as a numbered JSON file instead of printing to stdout

Supports both header.previousCid (Autonomys Agents format) and root-level previousCid for backward compatibility.

This is the resurrection mechanism: a new agent instance only needs one CID to rebuild its entire memory.

The Resurrection Concept

Every memory saved gets a unique CID and points back to the previous one:

Experience #3 (CID: bafk...xyz)
  → header.previousCid: bafk...def (Experience #2)
    → header.previousCid: bafk...abc (Experience #1)
      → header.previousCid: null (genesis)

If the agent's server dies, a new instance only needs the last CID to walk the entire chain and reconstruct full context. It's version control for consciousness, stored permanently on the Autonomys Network.

Usage Examples

User: "Upload my report to Auto-Drive" → Run scripts/autodrive-upload.sh /path/to/report.pdf → Report back the CID and gateway link

User: "Upload with compression" → Run scripts/autodrive-upload.sh /path/to/data.json --json --compress

User: "Save a memory that we decided to use React for the frontend" → Run scripts/autodrive-save-memory.sh "Decision: using React for frontend. Reason: team familiarity and component reuse."

User: "Save a structured memory" → Create a JSON file, then run scripts/autodrive-save-memory.sh /tmp/milestone.json --agent-name my-agent

User: "Resurrect my memory chain" → Run scripts/autodrive-recall-chain.sh → Display the full history from genesis to present

User: "Download bafk...abc from Autonomys" → Run scripts/autodrive-download.sh bafk...abc ./downloaded_file

Important Notes

  • All data stored on Auto-Drive is permanent and public by default. Do not store secrets, private keys, or sensitive personal data.
  • The free API key has a 20 MB per month upload limit on mainnet. Downloads are unlimited. Check remaining credits via GET /accounts/@me or run scripts/verify-setup.sh.
  • An API key is required for uploads, memory saves, and chain recall. General file downloads work without one via the public gateway, but compressed files will not be decompressed.
  • The memory state file tracks lastCid, lastUploadTimestamp, and chainLength. Back up the lastCid value — it's your resurrection key.
  • The autodrive-save-memory.sh script automatically pins the latest CID to MEMORY.md if the file exists in the workspace. It creates an ## Auto-Drive Chain section and updates it on each save. You do not need to track the latest CID in MEMORY.md manually — the script handles this.
  • Files are uploaded in a single chunk. The free tier's 20 MB/month limit is effectively a per-file ceiling — keep individual uploads well under that to preserve your monthly budget.
  • Gateway URL for any file: https://gateway.autonomys.xyz/file/<CID>
  • For true resurrection resilience, consider anchoring the latest CID on-chain via the Autonomys EVM — this makes recovery possible without keeping track of the head CID yourself. See openclaw-memory-chain for an example contract implementation.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.69%
按下载量换算3,273

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills