A repository-local AI framework that plugs into a developer’s existing workflow. Instead of external chat tools, it uses GitHub Issues for conversation, Git for persistent versioned memory, and GitHub Actions for execution. Installed by adding one folder to a repo, it delivers low-infrastructure, auditable, user-owned automation by committing every prompt/response and code change to the codebase.
Quick Start · How It Works · Installation Methods · Supported Providers · Configuration
This proves that a folder, a workflow, and an LLM API key can create an interactive AI collaborator as natural as talking to a teammate.
Please read Before You Begin for important usage information.
See the Index for all documentation.
Powered by pi conversation history is committed to git, giving your agent long-term memory across sessions. It can search prior context, edit or summarize past conversations, and all changes are versioned.
Drop a single .github-minimum-intelligence folder into any repo and you have a fully functional AI agent. Every GitHub issue becomes a conversation thread. The agent reads your message, thinks, responds, and commits its work - all inside your repository.
Quick-start: An
ANTHROPIC_API_KEYsecret is all you need - but any supported LLM provider works.
With a typical LLM, every question you ask and every answer you receive lives on someone else's platform. You copy code out of a chat window, paste it into your editor, and hope you grabbed the right version. The knowledge you build up is trapped in a third-party service - scattered across browser tabs and chat logs you'll never find again.
Minimum Intelligence flips that model. Every prompt you write and every response the agent produces is committed directly to your repository as part of its normal workflow. There is nothing to copy, nothing to paste, and nothing stored outside your control.
- Ask a question → the answer is already in your repo.
- Request a file change → the agent commits the edit for you.
- Continue a conversation weeks later → the full history is right there in git.
Your repository is the AI workspace. The questions, the results, the code, the context - it all lives where your work already lives, versioned and searchable, owned entirely by you.
Get an AI agent running in any GitHub repo in under 5 minutes:
# From the root of any git repository
curl -fsSL https://raw.githubusercontent.com/japer-technology/github-minimum-intelligence/main/setup.sh | bashThen:
- Add your LLM API key as a repository secret (details below).
git add -A && git commit -m "Add minimum-intelligence" && git push- Open an issue - the agent replies automatically.
| Capability | Why it matters |
|---|---|
| Single folder, any repo | Copy .github-minimum-intelligence/ in and run the install script. Nothing to host or maintain. |
| Zero infrastructure | Runs on GitHub Actions with your repo as the only backend. |
| Persistent memory | Conversations are committed to git - the agent remembers everything across sessions. |
| Full auditability | Every interaction is versioned; review or roll back any change the agent made. |
| Multi-provider LLM support | Works with Anthropic, OpenAI, Google Gemini, xAI, DeepSeek, Mistral, Groq, and any OpenRouter model. |
| Modular skill system | Agent capabilities are self-contained Markdown files - user-extensible and composable. |
| Personality hatching | Give the agent a name, personality, and vibe through a guided conversation. |
The entire system runs as a closed loop inside your GitHub repository. When you open an issue (or comment on one), a GitHub Actions workflow launches the AI agent, which reads your message, thinks, responds, and commits its work - all without leaving GitHub.
flowchart TD
A["START<br/>An Issue is created<br/>or commented"] --> B["START WORKFLOW"]
B --> C{"Is GitHub User<br/>Authorised?"}
C -- No --> D["Show Rejected<br/>👎"]
C -- Yes --> E["Show Launched<br/>🚀"]
E --> F["LOAD DEPENDANCIES"]
F --> G{"Is this an<br/>Existing Session?"}
G -- Yes --> H["LOAD SESSION"]
G -- No --> I["CREATE SESSION"]
H --> J["AGENT PROCESS<br/>pi-mono and LLM"]
I --> J
J --> K["PROCESS<br/>Issue Mapping"]
K --> L["SAVE STATE<br/>Commit and Push"]
L --> M["SAVE REPLY<br/>Issue Comment<br/>👍"]
M --> N["END<br/>User sees the reply"]
style A fill:#504CAF,color:#fff
style B fill:#4CAF50,color:#fff
style C fill:#AF4C7A,color:#fff
style D fill:#AF504C,color:#fff
style E fill:#4CAF50,color:#fff
style F fill:#4CAF50,color:#fff
style G fill:#AF4C7A,color:#fff
style H fill:#4CAF50,color:#fff
style I fill:#4CAF50,color:#fff
style J fill:#ABAF4C,color:#fff
style K fill:#4CAF50,color:#fff
style L fill:#4CAF50,color:#fff
style M fill:#4CAF50,color:#fff
style N fill:#504CAF,color:#fff
A technical framework designed to integrate a repository-local AI agent directly into a developer's existing workflow. Unlike external chat platforms, this system uses GitHub Issues as a conversational interface and leverages Git as a persistent memory bank, ensuring all interactions and code changes are versioned and owned by the user. Operating entirely through GitHub Actions, the tool provides a low-infrastructure solution that can be installed by adding a single folder to any repository. The project emphasizes full auditability and data sovereignty by committing every prompt and response to the codebase, allowing the agent to perform tasks such as editing files and summarizing long-term project history.
| Concept | Description |
|---|---|
| Issue = Conversation | Each GitHub issue maps to a persistent AI conversation. Comment again to continue where you left off. |
| Git = Memory | Session transcripts are committed to the repo. The agent has full recall of every prior exchange. |
| Actions = Runtime | GitHub Actions is the only compute layer. No servers, no containers, no external services. |
| Repo = Storage | All state - sessions, mappings, and agent edits - lives in the repository itself. |
All state lives in the repo:
.github-minimum-intelligence/state/
issues/
1.json # maps issue #1 → its session file
sessions/
2026-02-04T..._abc123.jsonl # full conversation for issue #1
Each issue number is a stable conversation key - issue #N → state/issues/N.json → state/sessions/<session>.jsonl. When you comment on an issue weeks later, the agent loads that linked session and continues. No database, no session cookies - just git.
- A GitHub repository (new or existing)
- Bun installed locally (for manual setup methods)
- An API key from your chosen LLM provider (see Supported providers below)
There are three ways to add Minimum Intelligence to a repository. Pick whichever fits your workflow.
| Method | Best for | GitHub App identity? |
|---|---|---|
| Quick setup script | Fastest - one command from your terminal | No (uses GITHUB_TOKEN) |
| Manual copy | Full control, offline-friendly | No (uses GITHUB_TOKEN) |
| GitHub App | Multi-repo, bot identity, centralised permissions | Yes |
Run a single command from the root of any git repository:
curl -fsSL https://raw.githubusercontent.com/japer-technology/github-minimum-intelligence/main/setup.sh | bashThis downloads the .github-minimum-intelligence/ folder, copies the workflow and issue templates into .github/, and installs dependencies.
After it finishes:
- Add your LLM API key as a repository secret (see step 3 below).
git add -A && git commit -m "Add minimum-intelligence" && git push- Open an issue - the agent replies automatically.
Prefer to download manually?
Download the latest zip, extract it, copy the .github-minimum-intelligence/ folder into your repo root, then run:
bun .github-minimum-intelligence/install/MINIMUM-INTELLIGENCE-INSTALLER.tsIf you want full control over every file:
1. Add minimum-intelligence to your repo
Copy the .github-minimum-intelligence folder into your repository root, then run the install script:
bun .github-minimum-intelligence/install/MINIMUM-INTELLIGENCE-INSTALLER.tsThis sets up the GitHub Actions workflow and issue templates.
2. Install dependencies
cd .github-minimum-intelligence && bun install3. Add your API key {#add-your-api-key}
In your GitHub repo, go to Settings → Secrets and variables → Actions and create a secret for your chosen provider:
| Provider | Secret name | Where to get it |
|---|---|---|
| Anthropic | ANTHROPIC_API_KEY |
console.anthropic.com |
| OpenAI | OPENAI_API_KEY |
platform.openai.com |
| Google Gemini | GEMINI_API_KEY |
aistudio.google.com |
| xAI (Grok) | XAI_API_KEY |
console.x.ai |
| DeepSeek (via OpenRouter) | OPENROUTER_API_KEY |
openrouter.ai |
| Mistral | MISTRAL_API_KEY |
console.mistral.ai |
| Groq | GROQ_API_KEY |
console.groq.com |
4. Commit and push
git add -A
git commit -m "Add minimum-intelligence"
git push5. Open an issue
Go to your repo's Issues tab and create a new issue. Write anything - ask a question, request a file, start a conversation. The agent picks it up automatically.
That's it. The agent replies as a comment on the issue.
Running minimum-intelligence as a GitHub App gives it its own bot identity, consistent permissions across repositories, and a path toward multi-repo installation without copy-pasting files.
How the GitHub App manifest flow works
The included app-manifest.json is a declarative description of the App's name, permissions, and events. GitHub's manifest flow lets you register an App by submitting this JSON instead of filling out every form field by hand. After registration GitHub gives you credentials (App ID + private key) that your workflow uses to authenticate.
┌─────────────────────────────────────────────────────────────┐
│ 1. You submit app-manifest.json to GitHub │
│ (via the UI or API) │
│ │
│ 2. GitHub creates the App and returns: │
│ • App ID (numeric) │
│ • Private key (.pem file) │
│ • Webhook secret │
│ │
│ 3. You store APP_ID + APP_PRIVATE_KEY as repo secrets │
│ │
│ 4. You install the App on target repos │
│ (Settings → Developer settings → GitHub Apps → Install) │
│ │
│ 5. When an issue is opened, the workflow uses the App │
│ credentials to generate a short-lived token and run │
│ the agent under the App's bot identity │
└─────────────────────────────────────────────────────────────┘
Use the included app-manifest.json to register the app automatically via GitHub's manifest flow:
- Go to GitHub → Settings → Developer settings → GitHub Apps → New GitHub App.
- Scroll to the bottom and click "Register a GitHub App from a manifest".
- Paste the contents of
app-manifest.jsonand submit.
Or use the GitHub Apps API to register programmatically:
# POST the manifest to register the app (opens a browser for confirmation)
curl -X POST https://github.com/settings/apps/new \
-H "Accept: application/json" \
-d @app-manifest.jsonAfter registration you will receive:
- An App ID (numeric)
- A private key (
.pemfile to download)
In the repository where the agent workflow lives, go to Settings → Secrets and variables → Actions and add:
| Secret name | Value |
|---|---|
APP_ID |
The numeric App ID shown on the app's settings page |
APP_PRIVATE_KEY |
The full contents of the downloaded .pem private key file |
Go to the app's Install page (linked from its settings) and install it on the repositories where you want the agent to respond to issues. The app needs read/write access to Issues, Contents, and Actions.
When the App is installed on a new repository, the github-minimum-intelligence-installation workflow automatically creates a welcome issue with setup instructions.
In each target repo, go to Settings → Secrets and variables → Actions and add the key for your chosen LLM provider (see the table in the manual copy section above).
After installing the App on a repo that already has the .github-minimum-intelligence/ folder, just open an issue - the agent is ready. If the repo does not have the folder yet, run the quick setup script first.
You open an issue
→ GitHub Actions triggers the agent workflow
→ The agent reads your issue, thinks, and responds
→ Its reply appears as a comment (🚀 shows while it's working, 👍 on success)
→ The conversation is saved to git for future context
Comment on the same issue to continue the conversation. The agent picks up where it left off.
Use the 🥚 Hatch issue template (or create an issue with the hatch label) to go through a guided conversation where you and the agent figure out its name, personality, and vibe together.
This is optional. The agent works without hatching, but it's more fun with a personality.
.github-minimum-intelligence/
.pi/ # Agent personality & skills config
settings.json # LLM provider, model, and thinking level
APPEND_SYSTEM.md # System prompt loaded every session
BOOTSTRAP.md # First-run identity prompt
skills/ # Modular skill packages
install/
MINIMUM-INTELLIGENCE-INSTALLER.ts # Setup script - installs workflows & templates
github-minimum-intelligence-agent.yml # GitHub Actions workflow template
github-minimum-intelligence-hatch.md # Issue template for personality hatching
MINIMUM-INTELLIGENCE-AGENTS.md # Default agent identity file
package.json # Installer dependencies
lifecycle/
agent.ts # Core agent orchestrator
indicator.ts # Adds 🚀 reaction on issue activity
state/ # Session history and issue mappings (git-tracked)
AGENTS.md # Agent identity file
package.json # Runtime dependencies
Additionally, setup.sh at the repo root provides a one-command installer for adding minimum-intelligence to any repository (see Quick Setup Script).
Change the model - edit .github-minimum-intelligence/.pi/settings.json:
Anthropic (default)
{
"defaultProvider": "anthropic",
"defaultModel": "claude-sonnet-4-20250514",
"defaultThinkingLevel": "low"
}Requires ANTHROPIC_API_KEY.
OpenAI - GPT-5.3 Codex Spark
{
"defaultProvider": "openai",
"defaultModel": "gpt-5.3-codex-spark",
"defaultThinkingLevel": "medium"
}Requires OPENAI_API_KEY.
OpenAI - GPT-5.3 Codex
{
"defaultProvider": "openai",
"defaultModel": "gpt-5.3-codex",
"defaultThinkingLevel": "medium"
}Requires OPENAI_API_KEY. Full-featured coding model with 400k context window.
DeepSeek (via OpenRouter)
{
"defaultProvider": "openrouter",
"defaultModel": "deepseek/deepseek-r1",
"defaultThinkingLevel": "medium"
}Requires OPENROUTER_API_KEY.
xAI - Grok
{
"defaultProvider": "xai",
"defaultModel": "grok-3",
"defaultThinkingLevel": "medium"
}Requires XAI_API_KEY.
Google Gemini - gemini-2.5-pro
{
"defaultProvider": "google",
"defaultModel": "gemini-2.5-pro",
"defaultThinkingLevel": "medium"
}Requires GEMINI_API_KEY.
Google Gemini - gemini-2.5-flash
{
"defaultProvider": "google",
"defaultModel": "gemini-2.5-flash",
"defaultThinkingLevel": "medium"
}Requires GEMINI_API_KEY. Faster and cheaper than gemini-2.5-pro.
xAI - Grok Mini
{
"defaultProvider": "xai",
"defaultModel": "grok-3-mini",
"defaultThinkingLevel": "medium"
}Requires XAI_API_KEY. Lighter version of Grok 3.
DeepSeek Chat (via OpenRouter)
{
"defaultProvider": "openrouter",
"defaultModel": "deepseek/deepseek-chat",
"defaultThinkingLevel": "medium"
}Requires OPENROUTER_API_KEY.
Mistral
{
"defaultProvider": "mistral",
"defaultModel": "mistral-large-latest",
"defaultThinkingLevel": "medium"
}Requires MISTRAL_API_KEY.
Groq
{
"defaultProvider": "groq",
"defaultModel": "deepseek-r1-distill-llama-70b",
"defaultThinkingLevel": "medium"
}Requires GROQ_API_KEY.
OpenRouter (any model)
{
"defaultProvider": "openrouter",
"defaultModel": "your-chosen-model",
"defaultThinkingLevel": "medium"
}Requires OPENROUTER_API_KEY. Browse available models at openrouter.ai.
Make it read-only - add --tools read,grep,find,ls to the agent args in lifecycle/agent.ts.
Filter by label - edit .github/workflows/github-minimum-intelligence-agent.yml to only trigger on issues with a specific label.
Adjust thinking level - set defaultThinkingLevel to "low", "medium", or "high" in settings.json for different task complexities.
.pi supports a wide range of LLM providers out of the box. Set defaultProvider and defaultModel in .github-minimum-intelligence/.pi/settings.json and add the matching API key to your workflow:
| Provider | defaultProvider |
Example model | API key env var |
|---|---|---|---|
| Anthropic | anthropic |
claude-sonnet-4-20250514 |
ANTHROPIC_API_KEY |
| OpenAI | openai |
gpt-5.3-codex, gpt-5.3-codex-spark |
OPENAI_API_KEY |
| Google Gemini | google |
gemini-2.5-pro, gemini-2.5-flash |
GEMINI_API_KEY |
| xAI (Grok) | xai |
grok-3, grok-3-mini |
XAI_API_KEY |
| DeepSeek | openrouter |
deepseek/deepseek-r1, deepseek/deepseek-chat |
OPENROUTER_API_KEY |
| Mistral | mistral |
mistral-large-latest |
MISTRAL_API_KEY |
| Groq | groq |
deepseek-r1-distill-llama-70b |
GROQ_API_KEY |
| OpenRouter | openrouter |
any model on openrouter.ai | OPENROUTER_API_KEY |
Tip: The
piagent supports many more providers and models. Runpi --helpor see the pi-mono docs for the full list.
The workflow only responds to repository owners, members, and collaborators. Random users cannot trigger the agent on public repos.
If you plan to use minimum-intelligence for anything private, make the repo private. Public repos mean your conversation history is visible to everyone, but get generous GitHub Actions usage.
The repo is overwhelmingly dominated by node_modules (~99%). The actual project files (README, LICENSE, config, GitHub workflows, GMI state/lifecycle) are only about ~1 MB.