
Auggie Context
- 2 repo stars
- Updated December 10, 2025
- vleytman/1wp-plugins
Context management and enhancement plugin for Claude Code
About
auggie-context is a Claude Code skill in the AI & Agent Building category. Context management and enhancement plugin for Claude Code
- auggie-context
- AI & Agent Building
- AI-coding skill
Auggie Context by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add vleytman/1wp-plugins/plugin install auggie-context@1wp-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Last updated | December 10, 2025 |
| Repository | vleytman/1wp-plugins ↗ |
What it does
Context management and enhancement plugin for Claude Code
README.md
Auggie Context Plugin
A context management and codebase exploration plugin for Claude Code, powered by the Auggie SDK and Context Engine SDK.
Features
/auggie: Context-aware codebase assistant/auggie-setup: Configure Auggie credentials/auggie-index: Index your codebase for fast context search- Auggie Agent: Specialized subagent for codebase exploration
- Auggie Skill: Automatic context-aware assistance
Getting Started
Step 1: Install the Plugin
# Add the 1wp-plugins marketplace
/plugin marketplace add vleytman/1wp-plugins
# Install the plugin
/plugin install auggie-context@1wp-plugins
Step 2: Set Up Credentials
/auggie-setup
Or manually:
# Install Auggie CLI (if not installed)
# See: https://docs.augmentcode.com/cli
# Login to Auggie
auggie login
# Verify it worked
auggie token print
Restart Claude Code after logging in.
Step 3: Index Your Codebase
/auggie-index
This creates auggie-context.json which persists your index between sessions.
Step 4: Start Using
/auggie How does the authentication system work?
/auggie Find all API endpoints
/auggie Explain the data flow in this component
Commands
| Command | Description |
|---|---|
/auggie [query] |
Ask questions about your codebase |
/auggie-setup |
Configure Auggie credentials |
/auggie-index |
Index or re-index the codebase |
How It Works
- Authentication: Uses
auggie loginwhich stores credentials in~/.augment/session.json - Indexing: Uses DirectContext API to index files and persist state to
auggie-context.json - Search: Queries are processed by Auggie's context engine for relevant code snippets
- Persistence: Index state is saved locally, enabling fast incremental updates
FAQ / Troubleshooting
"Auggie not configured" error
Run /auggie-setup or:
auggie login
Then restart Claude Code.
"Command not found: auggie"
Install the Auggie CLI:
- Visit https://docs.augmentcode.com/cli
- Follow installation instructions for your platform
Index seems stale or incomplete
Re-run the indexing command:
/auggie-index
"Not authenticated" or token errors
Your session may have expired. Re-authenticate:
auggie login
How do I check if I'm authenticated?
auggie token print
If it shows accessToken and tenantURL, you're good.
Where are credentials stored?
Credentials are stored in ~/.augment/session.json (created by auggie login). This file is outside your project and not committed to git.
Where is the index stored?
The index is stored in auggie-context.json in your project root. This file:
- Is project-specific
- Should be in
.gitignore(added automatically) - Is regenerated by
/auggie-index
How do I keep the index up to date?
Run /auggie-index after making significant changes to your codebase. The indexing is incremental - only changed files are re-processed.
Large codebase taking too long to index?
- Ensure you have a
.gitignorefile to excludenode_modules/, build artifacts, etc. - You can also create an
.augmentignorefile for additional exclusions
License
MIT