Use this skill to run and test the app locally with Docker Compose, then hand off to Eve for staging deploys.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioneve-local-dev-loopExecute the skills CLI command in your project's root directory to begin installation:
Fetches eve-local-dev-loop from incept5/eve-skillpacks and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate eve-local-dev-loop. Access via /eve-local-dev-loop in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
Use this skill to run and test the app locally with Docker Compose, then hand off to Eve for staging deploys.
compose.yaml or docker-compose.yml exists in the repo..eve/manifest.yaml) reflects the same services and ports.# Start local services (DB + migrations)
docker compose up -d
# Start API in dev mode (hot reload)
cd apps/api && npm run dev
# Start web in dev mode (Vite dev server with /api proxy)
cd apps/web && npm run dev
# View DB logs
docker compose logs -f
# Reset DB (drop + recreate + migrate)
docker compose down -v && docker compose up -d
Use the Eve-migrate image locally for migration parity with staging:
services:
db:
image: postgres:16-alpine
ports:
- "5432:5432"
environment:
POSTGRES_USER: app
POSTGRES_PASSWORD: app
POSTGRES_DB: myapp
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U app -d myapp"]
interval: 5s
timeout: 5s
retries: 5
migrate:
image: ghcr.io/incept5/eve-migrate:latest
environment:
DATABASE_URL: postgres://app:app@db:5432/myapp
volumes:
- ./db/migrations:/migrations:ro
depends_on:
db:
condition: service_healthy
volumes:
pgdata:
Why eve-migrate? The same runner executes in both local and staging, giving migration parity. It tracks applied migrations in schema_migrations (idempotent, checksummed, transactional). Plain SQL files with timestamp prefixes: 20260312000000_initial_schema.sql.
Run migrations manually after adding a new file:
docker compose run --rm migrate
db service mirrors the manifest's managed DB. Locally it's a container; in staging, Eve provisions it.migrate service mirrors the manifest's migrate job. Both use eve-migrate and mount db/migrations/.x-eve.ingress.public: true in the manifest.${secret.KEY} in the manifest and keep local values in .eve/dev-secrets.yaml..env for the API (e.g., DATABASE_URL=postgresql://app:app@localhost:5432/myapp)..env for Compose and .eve/dev-secrets.yaml for manifest interpolation..eve/dev-secrets.yaml in .gitignore.vite.config.ts to forward /api to http://localhost:3000 (matching the nginx proxy pattern in production).# Ensure profile and auth are set
eve profile use staging
eve auth status
# Set required secrets
eve secrets set API_KEY "value" --project proj_xxx
# Deploy to staging (requires --ref with 40-char SHA or a ref resolved against --repo-dir)
eve env deploy staging --ref main --repo-dir .
# If the environment has a pipeline configured, this triggers the pipeline.
# Use --direct to bypass pipeline and deploy directly:
eve env deploy staging --ref main --repo-dir . --direct
Track the deploy job:
eve job list --phase active
eve job follow <job-id>
eve job result <job-id>
eve secrets list).eve job diagnose <job-id> for failure details.Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
eve-local-dev-loop fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
eve-local-dev-loop is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend eve-local-dev-loop for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: eve-local-dev-loop is focused, and the summary matches what you get after install.
eve-local-dev-loop has been reliable in day-to-day use. Documentation quality is above average for community skills.
eve-local-dev-loop reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for eve-local-dev-loop matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: eve-local-dev-loop is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in eve-local-dev-loop — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend eve-local-dev-loop for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 63