plugins marketplace
← All plugins

entire

v0.7.0

Cross-agent skills and commands powered by Entire.

CodexClaude Code12 skills

by Entire IncMIT208updated 3 days ago

Source

git clone https://github.com/entireio/skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

entire/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/address-findings/SKILL.md
├── skills/explain/SKILL.md
├── skills/recall/SKILL.md
├── skills/replay/SKILL.md
├── skills/review/SKILL.md
├── skills/search/SKILL.md
├── skills/session-crosslink/SKILL.md
├── skills/session-handoff/SKILL.md
├── skills/session-to-skill/SKILL.md
├── skills/teach/SKILL.md
├── skills/using-entire/SKILL.md
└── skills/what-happened/SKILL.md

Skills12

address-findingsskills/address-findings/SKILL.md

Address the review findings posted on an Entire trail: fetch the trail's open findings, fix the code, and resolve them on the trail. Use when the user gives a trail URL or number and asks to address, fix, or resolve its findings or review comments. Not for local diff review — that is the `review` skill.

explainskills/explain/SKILL.md

Explains the intent behind source code by finding original session transcripts. Use explain with a function, file, or line of code to understand why it exists.

recallskills/recall/SKILL.md

Use when the user describes a task and wants to know whether something similar has been done before, then turn the closest prior session into a task playbook. Triggers on phrases like "have we done this before", "recall how we did X", "find similar work", "any precedent for", "has anyone solved", "is there a template for", and "how did we do this last time"

replayskills/replay/SKILL.md

Use when the user wants to step through a feature's checkpoints chronologically, pausing at each step to ask questions. Triggers on phrases like "replay <feature>", "walk me through how X was built", "show me the journey of", "step me through how Y was implemented", and "replay the last week"

reviewskills/review/SKILL.md

Review code changes on the current branch using checkpoint transcript context to understand developer intent before auditing the diff. Use when the user asks for a code review, wants to review branch changes, or asks to audit recent work before merging.

searchskills/search/SKILL.md

Use when the user wants to find prior work, checkpoints, or agent conversations by topic, repo, branch, author, or recent time window, or to search code content across repositories

session-crosslinkskills/session-crosslink/SKILL.md

Use when an agent session ran outside the repo whose commits should record it — e.g. launched from a higher-level folder, a non-Entire repo, or one repo but editing another — to attach the session to each affected Entire-enabled repo's HEAD commit.

session-handoffskills/session-handoff/SKILL.md

Use when the user wants to continue work from one agent in another agent, inspect recent sessions, or summarize a saved session or checkpoint for handoff

session-to-skillskills/session-to-skill/SKILL.md

Use when the user wants to turn one or more Entire-tracked sessions, checkpoints, or repeated agent workflows into a reusable agent skill.

teachskills/teach/SKILL.md

Use when a developer wants a topic-focused guided lesson built from canonical checkpoints, not a whole-repo overview. Triggers on phrases like "teach me <topic>", "teach me how this repo handles", "how does <topic> work in this repo", "give me a lesson on", "school me on", and "I need to learn about"

using-entireskills/using-entire/SKILL.md

Use for any codebase exploration or understanding task — reads historical intent from Entire checkpoints instead of guessing. Orchestrates other Entire skills to give the agent provenance-backed answers about code.

what-happenedskills/what-happened/SKILL.md

Explain why code looks the way it does by tracing the latest change for a file range or pasted snippet through `git blame` and deduplicated `entire explain` lookups. Use when the user asks what happened, says "tell me why" about a code block, is confused about a section of code, asks "wtf is going on", "why is this like this", "why was this changed", or wants provenance for a specific file block.

Manifests2

.codex-plugin/plugin.json
{
  "name": "entire",
  "version": "0.7.0",
  "description": "Cross-agent skills and commands powered by Entire.",
  "author": {
    "name": "Entire Inc",
    "url": "https://github.com/entireio"
  },
  "homepage": "https://github.com/entireio/skills",
  "repository": "https://github.com/entireio/skills",
  "license": "MIT",
  "keywords": [
    "entire",
    "session-handoff",
    "what-happened",
    "handoff",
    "agent-workflows",
    "skills"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Entire",
    "shortDescription": "Continue work and inspect code history with Entire",
    "developerName": "Entire Inc",
    "category": "Development",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://github.com/entireio/skills"
  }
}
.claude-plugin/plugin.json
{
  "name": "entire",
  "version": "0.7.0",
  "description": "Cross-agent skills and commands powered by Entire",
  "author": {
    "name": "Entire Inc"
  },
  "homepage": "https://github.com/entireio/skills",
  "repository": "https://github.com/entireio/skills",
  "license": "MIT",
  "keywords": [
    "entire",
    "skills",
    "handoff",
    "what-happened",
    "agent-workflows",
    "plugins"
  ]
}