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 --allInstall one skill:
npx skills add https://github.com/entireio/skills --skill searchSee 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
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 |
| 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.
Finds 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.
searchskill.mp4
Looks up the session behind a function, file, or line so your agent can explain the requirement, decision, or original problem that shaped it.
explainskill.mp4
Starts 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.
whathappenedskill.mp4
Reads 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.
sessionhandoff.mp4
These skills are designed for repositories where Entire has captured useful history. Some workflows need:
- the Entire CLI installed
- a git repository with Entire sessions, Checkpoints, or Checkpoint-backed commits
entire loginfor workflows that search indexed history- a GitHub
originand pushed, indexed Checkpoints for remote search results
Individual skills handle missing context differently and should explain what is missing before falling back or stopping.
Claude Code
/plugin marketplace add entireio/skills
/plugin install entireCodex (OpenAI)
Clone into the cross-client discovery path:
git clone https://github.com/entireio/skills.git ~/.agents/skills/entireCodex auto-discovers skills from ~/.agents/skills/ and .agents/skills/.
Update with:
cd ~/.agents/skills/entire && git pullCursor
Copy skills into the cross-client discovery directory:
git clone https://github.com/entireio/skills.git ~/.cursor/skills/entireCursor auto-discovers skills from .agents/skills/ and .cursor/skills/.
Copilot
/plugin install https://github.com/entireio/skills
# or
git clone https://github.com/entireio/skills.git ~/.copilot/skills/entireCopilot auto-discovers skills from .copilot/skills/.
Gemini CLI
gemini extensions install https://github.com/entireio/skillsUpdate with:
gemini extensions update entireOpenCode
Copy skills into the cross-client discovery directory:
git clone https://github.com/entireio/skills.git ~/.agents/skills/entireOpenCode auto-discovers skills from .agents/skills/, .opencode/skills/, and
.claude/skills/.
See CONTRIBUTING.md for local development, validation, and pull request guidance. Please also follow the Code of Conduct.
For bugs, feature requests, or questions, open a GitHub issue. You can also join the Entire Community Discord Server.
This project is licensed under the terms in LICENSE.