技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 64 · 14.3k · 148 current installs · 159 all-time installs
⭐ 64
安装量(当前) 159
🛡 VirusTotal :良性 · OpenClaw :良性
Package:agent-autonomy-kit
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill is an instruction-only kit that coherently describes how to make an agent run autonomously (task queue, heartbeat, crons, team channels); it does not request unexplained credentials or install code, but it does recommend operations (posting to external channels, cron-driven autonomous runs) that increase operational risk and require careful configuration.
目的
The name/description (Agent Autonomy Kit) matches the content: templates and prose instruct how to run continuous heartbeats, use a task queue, coordinate via team channels, and schedule cron jobs. Nothing requested or documented is out of scope for building an autonomous agent.
说明范围
SKILL.md and README instruct the agent to read/write local files (tasks/QUEUE.md, memory/YYYY-MM-DD.md, HEARTBEAT.md), run scheduled jobs (cron examples using openclaw), spawn/coordinate agents, and post updates to team channels. The instructions do not ask for unrelated system files or secrets, but they do direct the agent to send data to external channels (Discord/Slack) and to operate autonomously without human prompts — both legitimate for…
安装机制
There is no install spec and no code files; the skill is instruction-only. That minimizes risk from arbitrary code downloads or unexpected install steps.
证书
The registry lists no required env vars or credentials, and none are embedded in the instructions. However the README shows examples that assume integrations with external channels (Discord/Slack) and use of openclaw cron — those will require credentials/configuration at deployment. The absence of declared env requirements is not malicious but users must supply channel tokens/CLI access; ensure those credentials are scoped/minimized and stored…
持久
always:false (normal). The kit explicitly encourages scheduled, autonomous runs (cron jobs, continuous heartbeats, spawning agents). Autonomous execution increases the blast radius if misconfigured (posting externally, exhausting token budgets, or acting on sensitive data). The skill does not request system-level persistence itself, but following its instructions will create persistent automated behavior—review schedules and session isolation …
综合结论
This kit is coherent for enabling autonomous agent behavior, but it changes how your agent operates: it will run work without prompts and post to external channels if configured. Before installing or following the README: (1) Review the GitHub repo yourself to confirm there are no hidden scripts you weren't shown. (2) Only provide channel tokens (Discord/Slack) with least privilege and via a secrets store — do not paste tokens into public file…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Agent Autonomy Kit」。简介:Stop waiting for prompts. Keep working.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ryancampbell/agent-autonomy-kit/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: agent-autonomy-kit
version: 1.0.0
description: Stop waiting for prompts. Keep working.
homepage: https://github.com/itskai-dev/agent-autonomy-kit
metadata:
openclaw:
emoji: "🚀"
category: productivity
---
# Agent Autonomy Kit
Transform your agent from reactive to proactive.
## Quick Start
1. Create `tasks/QUEUE.md` with Ready/In Progress/Blocked/Done sections
2. Update `HEARTBEAT.md` to pull from queue and do work
3. Set up cron jobs for overnight work and daily reports
4. Watch work happen without prompting
## Key Concepts
- **Task Queue** — Always have work ready
- **Proactive Heartbeat** — Do work, don't just check
- **Continuous Operation** — Work until limits hit
See README.md for full documentation.