ForkZoo

ReviewAudited by ClawScan on May 10, 2026.

Overview

ForkZoo mostly matches its stated GitHub pet purpose, but it asks for broad GitHub access and can enable and run automated workflows in your account from external pet repositories.

Review carefully before installing. If you use it, inspect the forkZoo source repositories and workflows, use a narrowly scoped or temporary GitHub token, confirm before enabling Actions, and disable workflows or revoke the token when you are done.

Findings (4)

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

A broad GitHub token can affect repositories and workflows beyond the pet if it is over-scoped or mishandled.

Why it was flagged

The skill asks for broad GitHub credential authority, and the registry metadata does not declare a primary credential or required environment variable.

Skill content
GitHub Token with `repo` and `workflow` scopes
Recommendation

Use a least-privilege or temporary GitHub token, preferably scoped only to the intended pet repository/account, and revoke it when finished.

What this means

Remote workflows can run in your GitHub account’s forked repository and may change repository contents, consume Actions minutes, or publish output.

Why it was flagged

The adoption script enables GitHub Actions with all actions allowed in the newly forked repository, which is broader than a narrowly scoped pet workflow.

Skill content
"https://api.github.com/repos/$GITHUB_USER/$REPO_NAME/actions/permissions" ... -d '{"enabled": true, "allowed_actions": "all"}'
Recommendation

Review the forked repository workflows before enabling Actions, restrict allowed actions where possible, and require explicit user confirmation before making these changes.

What this means

You would be trusting code and workflows from external repositories that were not reviewed in this skill package.

Why it was flagged

The script forks external template repositories and immediately dispatches a workflow, but the workflow contents and a pinned source revision are not included in the artifacts.

Skill content
monkey) SOURCE_REPO="forkZoo/forkMonkey" ;; ... curl ... "https://api.github.com/repos/$GITHUB_USER/$REPO_NAME/actions/workflows/genesis.yml/dispatches"
Recommendation

Inspect the source pet repositories and their GitHub Actions workflows before adoption, and prefer pinning or documenting a specific reviewed commit.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

Your pet repository may keep changing automatically unless you disable the workflows.

Why it was flagged

Persistent daily automation is disclosed and central to the pet concept, but it continues operating after setup.

Skill content
Pets evolve automatically every day via GitHub Actions: - AI (GPT-4o or Claude) decides mutations
Recommendation

Only adopt if you want ongoing automation, and disable GitHub Actions or delete the repository when you no longer want the pet to evolve.