Skip to content

entireio/skills

skills cover

skills

Bring your Entire context to your agents with cross-agent skills.

Why This Exists

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

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.

Quick Start

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.

What skills help agents do

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

Included skills

The current repository includes these skills. Each skill lives in skills/<skill-name>/SKILL.md.

search

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

explain

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

what-happened

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

session-handoff

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

Requirements

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 login for workflows that search indexed history
  • a GitHub origin and pushed, indexed Checkpoints for remote search results

Individual skills handle missing context differently and should explain what is missing before falling back or stopping.

Agent-Specific Installation

Claude Code
/plugin marketplace add entireio/skills
/plugin install entire
Codex (OpenAI)

Clone into the cross-client discovery path:

git clone https://github.com/entireio/skills.git ~/.agents/skills/entire

Codex auto-discovers skills from ~/.agents/skills/ and .agents/skills/. Update with:

cd ~/.agents/skills/entire && git pull
Cursor

Copy skills into the cross-client discovery directory:

git clone https://github.com/entireio/skills.git ~/.cursor/skills/entire

Cursor 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/entire

Copilot auto-discovers skills from .copilot/skills/.

Gemini CLI
gemini extensions install https://github.com/entireio/skills

Update with:

gemini extensions update entire
OpenCode

Copy skills into the cross-client discovery directory:

git clone https://github.com/entireio/skills.git ~/.agents/skills/entire

OpenCode auto-discovers skills from .agents/skills/, .opencode/skills/, and .claude/skills/.

Contributing

See CONTRIBUTING.md for local development, validation, and pull request guidance. Please also follow the Code of Conduct.

Support

For bugs, feature requests, or questions, open a GitHub issue. You can also join the Entire Community Discord Server.

License

This project is licensed under the terms in LICENSE.

About

Cross-agent skills that help coding agents use Entire context from Checkpoints, sessions, and git history to search past work, explain code, and hand off sessions.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors