By entireio
Cross-agent skills and commands that trace code intent to session transcripts, search prior work for context, replay feature checkpoints, review diffs with developer intent, hand off sessions between agents, and convert workflows into reusable skill files.
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.
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"
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"
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.
Use when the user wants to find prior work, checkpoints, or agent conversations by topic, repo, branch, author, or recent time window
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.

Bring your Entire context to your agents with cross-agent skills.
The Entire CLI captures the context behind your code changes: prompts, transcripts, Checkpoints, and the decisions that led to each change, alongside your git history. This repository packages agent-invokable workflows that teach coding agents how to use that context across development environments.
Instead of looking up Entire commands yourself, you can ask in plain language and let your agent search prior work, inspect provenance, hand off session state, or turn repeated workflows into new skills.
Install every skill with the skills CLI:
npx skills add https://github.com/entireio/skills --all
Install one skill:
npx skills add https://github.com/entireio/skills --skill search
See Agent-Specific Installation for setup instructions by agent.
[!NOTE] These skills are most useful in codebases with real Checkpoints and session history. The richer the history, the more context your agent has to work with; in a new or lightly captured repository, some workflows may have less to find or explain.
After installing, ask your agent for the workflow you want:
search past work for rate limiting
explain src/auth.ts
what happened here: src/auth.ts:42-57
hand off this session
turn my release notes workflow into a skill
review this branch before merging
For a guided walkthrough, see the skills tutorial.
| Goal | Example prompt |
|---|---|
| Find prior work before making changes | search past work for the migration |
| Understand the intent behind a function, file, or line | explain parseConfig |
| Investigate the latest change to a specific block | what happened at src/auth.ts:42 |
| Review branch changes with intent context | review this branch before merging |
| Pick up another agent's work | hand off the codex session |
| Convert repeated work into a reusable workflow | make a skill from this session |
The current repository includes these skills. Each skill lives in
skills/<skill-name>/SKILL.md.
searchFinds prior work in your Entire history by topic, repo, branch, author, or time window, so your agent can bring past context into the current task before making changes.
https://github.com/user-attachments/assets/52e50eae-ba53-4f31-ad2e-2a29a767a34f
explainLooks up the session behind a function, file, or line so your agent can explain the requirement, decision, or original problem that shaped it.
https://github.com/user-attachments/assets/ab2e88f6-9bce-417b-ba71-6e93ecad370b
what-happenedStarts from an exact file line, range, or pasted snippet and traces the latest
change with git blame and Checkpoint context. Useful when reviewing a concrete
block, debugging a regression, or asking why that block changed.
https://github.com/user-attachments/assets/47db0daa-60bd-4000-b956-2d0e4d980b9b
session-handoffReads saved or active session context so another agent can pick up the task state, important discoveries, blockers, and next steps without making you reconstruct everything manually.
https://github.com/user-attachments/assets/0df3b5cd-fe37-4145-af48-138642ccc8bc
reviewReviews code changes on the current branch by reading checkpoint transcripts to
understand developer intent, then auditing the diff for issues. Produces
intent-aware findings with severity levels (Critical / High / Medium /
Low) compatible with entire review --fix. Includes a separate
references/review-rules.md for the audit checklist.
using-entireOrchestrator skill for codebase exploration. Routes user intent to the right sub-skill (search, explain, what-happened, review, session-handoff, session-to-skill, session-crosslink) or runs a general exploration flow that reads checkpoint history before inferring from code.
session-crosslinkLinks an agent session that ran outside the repo whose commits should record it
— launched from a higher-level folder, a non-Entire repo, or one repo but
editing another — to each affected Entire-enabled repo's HEAD commit. Previews
with --dry-run then amends on confirmation, no manual cd orchestration.
These skills are designed for repositories where Entire has captured useful history. Some workflows need:
Tools for understanding code intent by tracing changes back to original session transcripts
npx claudepluginhub entireio/skills --plugin entireMine your SpecStory coding histories (Claude Code, Codex, Cursor, Gemini, and more) into a persistent corpus, surface your reproducible workflows with corroborated evidence and outcome labels, and forge the ones you choose into skills installed across every agent harness.
General purpose Claude Code toolkit with research agents, skills, and introspection commands
Hand off context to any AI coding agent. Creates comprehensive handoff documents that capture the current task, progress, modified files, and all relevant context needed to seamlessly continue work in any AI assistant (Claude Code, Cursor, Copilot, Aider, etc.).
Adds the agent-session-resume skill for reconstructing and continuing prior AI coding-agent sessions.
対話コンテキストのexport/importスキル。会話で共有された目的・意図・設計判断・制約条件を .dev/contexts/ に書き出し、別セッションやレビューで読み込む。1対多のコンテキスト共有により、複数のsub PRをまとめたfeature PRのレビューやコードの自動改善に便利。
Git-as-knowledge-graph workflow for traceability across issues, branches, commits, reviews, and PRs.