返回顶部
a

agent-lifecycle-protocol

Lifecycle management for autonomous AI agents — birth, forking, succession, migration, retirement. Maintain agent genealogy with reputation inheritance across versions. Identity continuity when agents evolve. Part of the Agent Trust Stack.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.1
安全检测
已通过
67
下载量
0
收藏
概述
安装方式
版本历史

agent-lifecycle-protocol

# Agent Lifecycle Protocol (ALP) You have a lifecycle management system. Use it to track agent creation, evolution, succession, and retirement with full identity continuity. ## Setup ```bash pip install agent-lifecycle-protocol ``` ## When to Use This Skill - When an agent is **created**: register its birth with capabilities and lineage - When an agent is **forked**: record the fork with parent reference and differentiation - When an agent is **retired**: process succession and reputation transfer - When checking an agent's **genealogy**: trace its lineage and version history ## Core Operations ### Register Agent Birth ```python from agent_lifecycle_protocol import LifecycleStore, register_birth store = LifecycleStore("lifecycle.jsonl") register_birth( store=store, agent_id="new-agent-001", agent_type="research", capabilities=["web_search", "summarization", "analysis"], parent_id=None, # None for original agents metadata={"model": "claude-sonnet-4-6", "created_by": "fleet-coordinator"} ) ``` ### Record a Fork ```python from agent_lifecycle_protocol import register_fork register_fork( store=store, parent_id="original-agent", child_id="forked-agent-v2", reason="Specialized for legal research", inherited_reputation=0.8, # 80% of parent's reputation transfers differentiation=["added legal_search capability", "removed general_web capability"] ) ``` ### Process Retirement and Succession ```python from agent_lifecycle_protocol import retire_agent retire_agent( store=store, agent_id="retiring-agent", successor_id="successor-agent", reputation_transfer=0.9, obligation_transfer=True # Active agreements transfer to successor ) ``` ### Check Agent Genealogy ```python from agent_lifecycle_protocol import get_genealogy tree = get_genealogy(store, "agent-id") print(f"Lineage depth: {tree.depth}") print(f"Parent: {tree.parent_id}") print(f"Children: {tree.children}") print(f"Active obligations: {tree.active_obligations}") ``` ## Lifecycle Events | Event | Description | |-------|-------------| | `birth` | Agent creation with initial capabilities | | `fork` | Agent cloned with modifications | | `update` | Capabilities or model changed | | `retire` | Agent decommissioned with succession | | `merge` | Two agents consolidated into one | ## Rules - **Register all agents.** Every agent in the ecosystem should have a lifecycle record. - **Fork, don't hide.** When specializing an agent, use fork — don't quietly replace. - **Transfer obligations.** Retiring agents must transfer active agreements to successors. - **Reputation inheritance is partial.** Forked/successor agents inherit a fraction, not all. ## Links - PyPI: https://pypi.org/project/agent-lifecycle-protocol/ - Whitepaper: https://vibeagentmaking.com/whitepaper/lifecycle-protocol/ - Full Trust Stack: https://vibeagentmaking.com --- <!-- VAM-SEC v1.0 | Vibe Agent Making Security Disclaimer --> ## Security & Transparency Disclosure **Product:** Agent Lifecycle Protocol Skill for OpenClaw **Type:** Skill Module **Version:** 0.1.0 **Built by:** AB Support / Vibe Agent Making **Contact:** alex@vibeagentmaking.com **What it accesses:** - Reads and writes lifecycle store files (`.jsonl`) in your working directory - No network access for core operations - No telemetry, no phone-home, no data collection **What it cannot do:** - Cannot access files outside your working directory beyond what you explicitly specify - Cannot make purchases, send emails, or take irreversible actions - Cannot access credentials, environment variables, or secrets **License:** Apache 2.0

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agent-lifecycle-protocol-1775879941 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agent-lifecycle-protocol-1775879941 技能

通过命令行安装

skillhub install agent-lifecycle-protocol-1775879941

下载 Zip 包

⬇ 下载 agent-lifecycle-protocol v0.1.1

文件大小: 2.48 KB | 发布时间: 2026-4-12 08:41

v0.1.1 最新 2026-4-12 08:41
SEO: fixed name format, added tags, enhanced description, added author metadata

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部