Agent Plugins Marketplace
All plugins

origami

v1.0.5

Variable-resolution context: folds bulky stale tool output to disk behind always-visible stubs; hydrate() recovers detail on demand.

Claude Code2 Skills

0 GitHub starsUpdated 3 days ago

Directory evidence

Runtimes
Claude Code
Parsed components
2 skill or MCP entries
Source updated
Sep 21, 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 origami for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install origami@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/dullfig/origami

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

origami/
├── .claude-plugin/plugin.json
├── skills/context-folding/SKILL.md
└── skills/enable/SKILL.md

Included Skills2

context-foldingskills/context-folding/SKILL.md

Use when the conversation contains [origami fold-…] stubs, when you need detail that was folded, or when deciding whether to re-run a tool whose earlier result may have been folded.

enableskills/enable/SKILL.md

Use when the user invokes /origami:enable, or asks to enable origami, turn on origami, enable function hooks, or fix "origami is installed but function hooks are disabled".

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "origami",
  "description": "Variable-resolution context: folds bulky stale tool output to disk behind always-visible stubs; hydrate() recovers detail on demand.",
  "version": "1.0.5",
  "userConfig": {
    "foldAgeTurns": {
      "type": "number",
      "title": "Fold age (turns)",
      "default": 3,
      "description": "Results younger than this many turns are never fold candidates"
    },
    "minFoldMass": {
      "type": "number",
      "title": "Min fold mass (tokens)",
      "default": 20000,
      "description": "Candidate token mass that triggers a sweep"
    },
    "workingSetBudget": {
      "type": "number",
      "title": "Working set budget (tokens)",
      "default": 100000,
      "description": "Absolute live-context tokens; above it sweeps turn aggressive"
    },
    "preserveRecentTurns": {
      "type": "number",
      "title": "Preserve recent turns",
      "default": 3,
      "description": "Turns the rebuilder never touches"
    },
    "minReductionRatio": {
      "type": "number",
      "title": "Min reduction ratio",
      "default": 0.15,
      "description": "Below this estimated reduction a sweep is skipped"
    },
    "pinAfterHydrations": {
      "type": "number",
      "title": "Pin after hydrations",
      "default": 2,
      "description": "Hydration count at which a fold is pinned open"
    },
    "librarianModel": {
      "type": "string",
      "title": "Librarian model",
      "default": "haiku",
      "description": "Model alias for the librarian"
    }
  }
}

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

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