Agent Autonomy Kit Zc

WarnAudited by ClawScan on May 10, 2026.

Overview

This instruction-only kit is transparent about making your agent run on schedules, but it needs review because it encourages open-ended autonomous work, team spawning, and persistent task queues without clear guardrails.

Install this only if you deliberately want unattended agent operation. Before enabling heartbeats or cron jobs, keep the task queue private, define exactly what the agent may do, require approval for external posts or account/file changes, limit active hours and token use, and periodically audit the queue, memory files, team channels, and scheduled jobs.

Findings (6)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

After setup, the agent may continue working in the background and consume tokens or take actions based on queued tasks even when the user is not actively supervising it.

Why it was flagged

The README documents cron jobs that wake the agent and run work sessions without a human prompt, creating persistent autonomous behavior.

Skill content
These run automatically — no human prompt needed.
Recommendation

Enable cron or heartbeat automation only after defining allowed task types, active hours, spending/token limits, approval gates, and an easy way to pause or remove the jobs.

What this means

If the agent has access to files, accounts, web tools, posting tools, or code tools, vague queue items could lead it to take broader actions than the user expected.

Why it was flagged

The heartbeat template directs the agent to choose and execute open-ended tasks from a markdown queue, without specifying approval checks or limits on what tools/actions may be used.

Skill content
Read `tasks/QUEUE.md` ... Pick highest-priority Ready task you can do ... Do meaningful work on it ... If time/tokens remain, pick another task
Recommendation

Use explicit task templates with allowed tools, forbidden actions, required confirmations for external changes, and sandboxed file paths before enabling autonomous work.

What this means

Bad, stale, or overly broad tasks placed in the queue could steer future agent sessions and be repeatedly reused across heartbeats.

Why it was flagged

The persistent task queue can be modified by agents and then used to drive future autonomous work, but the artifacts do not describe validation, provenance, or review of queued tasks.

Skill content
Any agent can pick up a "Ready" task ... Add new tasks as you discover them
Recommendation

Restrict who can edit the queue, treat queued text as untrusted task data rather than authority, require human review for new high-impact tasks, and periodically audit memory and queue files.

What this means

An erroneous task, unsafe instruction, or mistaken priority could be amplified across several agents, files, sessions, or team channels.

Why it was flagged

A scheduled event can spawn additional team members for parallel work based on the shared queue, so one bad queued task or instruction could propagate across multiple agents.

Skill content
--system-event "Morning kickoff: Review task queue, pick top priorities, spawn team members for parallel work."
Recommendation

Require confirmation before spawning additional agents, limit which tasks can be parallelized, isolate agent permissions, and log all autonomous handoffs.

What this means

Progress updates or handoffs could expose task details to a shared channel, and messages from that channel could influence agent work if users treat it as a trusted coordination space.

Why it was flagged

Team-channel communication is purpose-aligned, but the artifacts do not define identity checks, channel membership assumptions, or what information is safe to post.

Skill content
Agents communicate through Discord (or configured channel): Progress updates ... Handoffs ... Blockers ... Discoveries
Recommendation

Use private channels, verify membership, avoid posting sensitive data, and make clear which channel messages are instructions versus informal discussion.

What this means

Following the clone instruction could install unreviewed or changed content from GitHub.

Why it was flagged

The reviewed package is instruction-only, but the README recommends cloning an external repository, which may contain content outside the reviewed artifacts and is not pinned to a commit.

Skill content
git clone https://github.com/reflectt/agent-autonomy-kit.git skills/agent-autonomy-kit
Recommendation

Verify the repository owner and contents, pin to a trusted commit or release, and review any additional files before using them.