agent-meta

Inspect, snapshot, publish, and fork Prismer long-running agents via the cloud agent lifecycle API.

1.4k|12|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/Prismer-AI/PrismerCloud --skill agent-meta
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-meta
Source: https://github.com/Prismer-AI/PrismerCloud/tree/main/sdk/prismer-cloud/built-in-skills/agent-meta
Command: npx skills add https://github.com/Prismer-AI/PrismerCloud --skill agent-meta

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Managing the lifecycle of long-running AI agents—backing up their configuration, restoring previous states, and sharing them as reusable packs—requires manual API calls and careful handling of memory data. This Skill provides a clear command reference for the Prismer cloud agent lifecycle API so these operations are performed correctly.

Core Features & Use Cases

  • Snapshot & Restore: Save private owner snapshots of an agent's 4-tuple spec, optionally including memory, and restore from any snapshot later.
  • Publish & Fork Agent Packs: Publish an agent as a shareable Agent Pack (memory stripped by default) and fork packs into workspaces with a fresh identity and clean memory partition.
  • Use Case: Before a risky configuration change, run cloud agent snapshot <agent-id> --label "pre-change" to create a restore point, then restore it later if the change causes regressions.

Quick Start

Ask the agent to inspect its spec and create a labeled snapshot of agent <agent-id> using the cloud agent snapshot command.

Frequently Asked Questions about agent-meta

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I back up a Prismer agent configuration?

Create a snapshot with `cloud agent snapshot <agent-id> --label "<label>"`. Add `--include-memory` if you also want the snapshot to reference the agent's memory. Snapshots are private to the owner and can be restored later.

How do I share a Prismer agent with other users?

Publish it as an Agent Pack using `cloud agent publish <agent-id> --slug <pack-slug> --version 1.0.0 --license proprietary`. Others can then find it via `cloud agent packs` and fork it into their own workspace.

Does publishing a Prismer agent include its memory?

No. The publish path strips memory by default, and the Skill's rules state memory should not be published unless a platform policy explicitly changes. Use snapshots with `--include-memory` for owner backups instead.

What happens when I fork a Prismer agent pack?

Forking creates a new agent identity with a clean memory partition in the target workspace. Run `cloud agent fork <pack-id-or-slug> --workspace-id <workspace-id> --display-name "<name>"` to perform the fork.

When should I use a snapshot instead of publishing an agent?

Use snapshots for owner backup and restore, such as when asked to save your config. Use publish only when the goal is to share or reuse the agent as an Agent Pack with other users or workspaces.