creating intital scaffolding for claude code plugins

This commit is contained in:
Noah Zweben MacBook
2025-11-20 11:47:24 -08:00
commit 4ca561fb85
191 changed files with 30170 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
"name": "greptile",
"description": "AI-powered codebase search and understanding. Query your repositories using natural language to find relevant code, understand dependencies, and get contextual answers about your codebase architecture.",
"version": "1.0.0",
"author": {
"name": "Greptile"
}
}

View File

@@ -0,0 +1,9 @@
{
"greptile": {
"type": "http",
"url": "https://api.greptile.com/mcp",
"headers": {
"Authorization": "Bearer ${GREPTILE_API_KEY}"
}
}
}

View File

@@ -0,0 +1,23 @@
# Greptile Plugin
AI-powered codebase search and understanding for Claude Code.
## What It Does
Greptile enables natural language queries across your repositories to find relevant code, understand dependencies, and get contextual answers about your codebase architecture.
## Setup
1. Get your API key from [app.greptile.com](https://app.greptile.com)
2. Set the environment variable:
```bash
export GREPTILE_API_KEY=your-api-key-here
```
## Required Environment Variables
- `GREPTILE_API_KEY` - Your Greptile API key
## Learn More
See [Greptile MCP Documentation](https://www.greptile.com/docs/mcp/setup-ides) for detailed setup instructions.