Agent Lifecycle Protocol

PassAudited by ClawScan on May 10, 2026.

Overview

The skill is coherent and purpose-aligned, but users should notice that it relies on an external PyPI package and creates persistent agent lifecycle records.

This skill appears benign and coherent for tracking agent lifecycle data. Before installing, verify the PyPI package source/version, use a contained environment, and treat lifecycle records such as reputation and obligation transfer as governance data that should be reviewed rather than blindly trusted.

Findings (3)

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

Installing the package gives local code from PyPI a chance to run or be imported later, so its real behavior is not confirmed by this skill artifact alone.

Why it was flagged

The skill depends on an external PyPI package, while the provided artifacts contain no package code for review.

Skill content
pip install agent-lifecycle-protocol
Recommendation

Install only from the expected PyPI project, review the package source or pin a trusted version, and use a virtual environment if possible.

What this means

Incorrect or stale lifecycle records could be reused later and affect trust, succession, or genealogy decisions.

Why it was flagged

The skill creates or uses a persistent lifecycle store, which can preserve agent identity, lineage, reputation, and obligation records across sessions.

Skill content
store = LifecycleStore("lifecycle.jsonl")
Recommendation

Keep the lifecycle file in a known project directory, review important changes, and avoid treating stored reputation or obligation data as authoritative without validation.

What this means

A wrong retirement, fork, reputation, or obligation record could influence later agents that rely on the lifecycle history.

Why it was flagged

The lifecycle model includes transferring obligations and reputation across agent successors, which can propagate mistaken records if used without review.

Skill content
Retiring agents must transfer active agreements to successors.
Recommendation

Require human review for succession, retirement, and obligation-transfer records, especially in shared or production agent systems.