Autonomous Agent CEO Architecture by Emergence

ReviewAudited by ClawScan on May 10, 2026.

Overview

This is a disclosed autonomous GitHub-based agent system, but it needs review because it can keep running on a schedule with GitHub/LLM credentials and act on issue or IM inputs whose trust rules are not defined.

Install only if you are prepared to operate it like a real autonomous service: use a private or tightly controlled repository, a dedicated least-privilege GitHub bot/token, branch protections, reviewed memory updates, pinned runtime versions, and a clear way to stop the cron jobs. Do not give it broad personal credentials or access to public issue inputs without additional approval checks.

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.

ConcernMedium Confidence
ASI01: Agent Goal Hijack
What this means

Anyone who can create or influence the watched issue channel could potentially steer the autonomous agent's work queue and persistent context.

Why it was flagged

The scheduled agent treats GitHub issue bodies as operational input for analysis and delegation, but the artifacts do not describe how issue authors or labels are authenticated as trusted instructions.

Skill content
For each new issue: read body, assemble context, write analysis comment ... Create and assign sub-agent tasks as needed
Recommendation

Run this only in a private or tightly controlled repository, verify issue authors and labels before acting, and require human approval before delegation or memory-changing actions from new issue content.

What this means

The agent can create branches, commits, issues, comments, and PRs in the configured repository, even if final merge or publication is intended for human review.

Why it was flagged

The agent is expected to mutate the Git repository by committing, pushing, and opening PRs. This is aligned with the stated GitHub PR workflow, but it is still a meaningful write capability.

Skill content
Commit and push for human stakeholder review
7. Open PR referencing the source issue
Recommendation

Use branch protection, required reviews, a dedicated bot account, and repository-scoped permissions so autonomous changes cannot directly affect protected branches or releases.

What this means

If configured with a personal or broad GitHub credential, the 24/7 agent may operate with more repository or account authority than intended.

Why it was flagged

The setup asks for GitHub authentication or a token, while the registry declares no primary credential or required env vars. The artifacts do not specify least-privilege token scopes or a dedicated service account.

Skill content
gh auth login

# Option B: Set GITHUB_TOKEN in .env
# GITHUB_TOKEN=ghp_your_token_here
Recommendation

Use a dedicated GitHub bot identity with minimal repo-specific scopes, document required token permissions, avoid personal tokens where possible, and declare required credentials in the skill metadata.

What this means

The behavior of the deployed system can depend on whatever external package version is installed at setup time.

Why it was flagged

The setup uses a user-directed global package install without a pinned version. This is common for runtime setup and aligned with the purpose, but it leaves version/provenance decisions to the installer.

Skill content
npm install -g openclaw
openclaw init
openclaw gateway start
Recommendation

Pin runtime versions where possible, install from trusted package sources, review the cloned repository before running, and prefer reproducible deployment instructions.

ConcernMedium Confidence
ASI06: Memory and Context Poisoning
What this means

Bad, misleading, or sensitive information from issues, research, or agent outputs could persist and influence later autonomous decisions.

Why it was flagged

The scheduled agent is instructed to persist strategic insights into long-term memory, but the artifacts do not define review, provenance, sanitization, or rollback controls for memory updates.

Skill content
Update MEMORY.md with any strategic insights
Recommendation

Require review for MEMORY.md changes, record source/provenance for memory entries, avoid storing secrets or private data, and add a rollback process for poisoned or incorrect memory.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

Once scheduled, the agent can continue acting on its configured heartbeat without the user being present.

Why it was flagged

Persistent autonomous operation is explicitly disclosed and central to the skill's purpose, but users should still treat it as a long-running agent with ongoing authority.

Skill content
Runs 24/7 on a server via any autonomous agent framework.
Recommendation

Run it on a dedicated VM or account, keep cron entries visible, monitor logs and GitHub activity, and document an easy stop/disable procedure.