Corporate hub for AI resources. Publish, discover, and generate kits for AI coding assistants.
763
The AI Resources Hub ā A centralized platform to discover, curate, and share agents, skills, instructions, rules, and MCP servers for AI-powered coding assistants.
š reppilot.comā
Rep-Pilot is a corporate repository for AI development resources. It acts as a centralized hub where every developer in your organization can publish their agents, skills, instructions, rules, and MCP servers ā making them instantly discoverable and reusable by the entire team. Developers feed off each other's work, eliminating silos and keeping everything globalized across the company.
With Rep-Pilot you can:
.zip kit ready for your AI coding tool (GitHub Copilot, Claude Code, OpenCode, and more).It integrates with your existing enterprise infrastructure ā LDAP for authentication, any OpenAI-compatible LLM provider, and both GitHub and GitLab APIs.
docker compose up -d
Open http://localhostā and log in with admin / the password you set in ADMIN_PASSWD.
services:
# MongoDB 7.0 ā DataBase
mongo:
image: mongo:7.0
container_name: rep-pilot-mongo
restart: unless-stopped
ports:
- "27017:27017"
volumes:
- mongo-data:/data/db
# Rep-Pilot ā frontend + backend
rep-pilot:
image: gonzalorando/rep-pilot:latest
container_name: rep-pilot
restart: unless-stopped
ports:
- "80:80"
environment:
MONGO_URI: "mongodb://mongo:27017/rep-pilot"
JWT_SECRET: your-secure-jwt-secret
ADMIN_PASSWD: your-admin-password
CORS_ORIGIN: "*"
DEFAULT_LANGUAGE: "en"
DATA_DIR: "/app/back/data"
volumes:
- rep-pilot-data:/app/back/data
depends_on:
mongo:
condition: service_healthy
volumes:
mongo-data:
rep-pilot-data:
docker run -d \
-p 80:80 \
-e MONGO_URI=mongodb://host.docker.internal:27017/rep-pilot \
-e JWT_SECRET=your-secure-jwt-secret \
-e ADMIN_PASSWD=your-admin-password \
-e CORS_ORIGIN=* \
-e DEFAULT_LANGUAGE=en \
-v rep-pilot-data:/app/back/data \
--name rep-pilot \
gonzalorando/rep-pilot:latest
| Variable | Required | Description |
|---|---|---|
MONGO_URI | Yes | MongoDB connection URI. |
JWT_SECRET | Yes | Secret key used to sign JWT tokens. |
ADMIN_PASSWD | No | Creates an admin user on first boot with this password. |
CORS_ORIGIN | No | CORS allowed origin. Defaults to *. |
DEFAULT_LANGUAGE | No | UI language: en (English) or es (Spanish). Defaults to en. |
DATA_DIR | No | Path for persistent data storage. Defaults to data/. |
| Volume | Mount point | Purpose |
|---|---|---|
mongo-data | /data/db | MongoDB persistence. Protects config, tags and resources. |
rep-pilot-data | /app/back/data | Application data (projects, resources, uploads). |
http://localhost with admin / your password..zip structured for your AI tool of choice.Content type
Image
Digest
sha256:313f3dd51ā¦
Size
146.1 MB
Last updated
24 days ago
docker pull gonzalorando/rep-pilot