Agent Plugins Marketplace
All plugins

floppy

v0.13.0

Session ritual for agent work: durable memory, a start rite, a wrap rite, and the guards that keep them honest

Claude Code5 Skills

By Alexander MalaevLicense: MIT0 GitHub starsUpdated 3 hours ago

Directory evidence

Runtimes
Claude Code
Parsed components
5 skill or MCP entries
Source updated
Aug 26, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install plugin

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install floppy@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/spscream/ai-floppy

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

floppy/
├── .claude-plugin/plugin.json
├── skills/agent-memory/SKILL.md
├── skills/init/SKILL.md
├── skills/start/SKILL.md
├── skills/workstatus/SKILL.md
└── skills/wrap/SKILL.md

Included Skills5

agent-memoryskills/agent-memory/SKILL.md

Conventions for the durable session memory this toolkit keeps — one fact per file, note frontmatter and metadata.evidence, the three-level index tree, the quota.lock ratchet, and which of project/workplace/machine scope a fact belongs to. Load this before writing, moving, or reorganizing a memory note, or whenever start/workstatus/wrap need the ground rules — they assume these conventions rather than restate them.

initskills/init/SKILL.md

Lay the floppy memory out in this repository — copy the shim to .floppy/run, write .floppy/config, create the memory skeleton, gitignore the local scope, and point AGENTS.md at agent-memory. Idempotent, safe to run again. Use once per repository, when setting the plugin up for the first time, or when the user asks to init, set up, or bootstrap floppy here.

startskills/start/SKILL.md

Orient a fresh session before touching any file — read the current-state file, the relevant half's own guidance, and that half's memory index, then verify live facts with `bash .floppy/run status` instead of trusting the documents. Use at the start of a session, when picking up a new task or branch of work, or when the user asks to start, orient, or "what's next".

workstatusskills/workstatus/SKILL.md

Report what is true right now, checked live rather than recalled — retells `bash .floppy/run status` and names what is waiting on the human. Use mid-session for "where are we", a live status check, before answering a question about current state, or when the user asks for workstatus.

wrapskills/wrap/SKILL.md

Close a session — select the facts worth keeping into memory, update the current-state file, name what's left unfinished, then check and commit through the shim. Use when a session is ending, context is about to be cleared, or the user asks to wrap up.

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "floppy",
  "description": "Session ritual for agent work: durable memory, a start rite, a wrap rite, and the guards that keep them honest",
  "version": "0.13.0",
  "author": {
    "name": "Alexander Malaev"
  },
  "repository": "https://github.com/spscream/ai-floppy",
  "license": "MIT",
  "keywords": [
    "memory",
    "workflow",
    "session",
    "skills"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[floppy on Agent Plugins Marketplace](https://pluginsmp.com/plugins/floppy)