eve-troubleshooting▌
incept5/eve-skillpacks · updated Apr 8, 2026
Use CLI-first diagnostics. Do not assume cluster access.
Eve Troubleshooting
Use CLI-first diagnostics. Do not assume cluster access.
Quick Triage Checklist
eve system health
eve auth status
eve job list --phase active
Common Issues and Fixes
Auth Fails or "Not authenticated"
eve auth logout
eve auth login
eve auth status
If SSH key is missing, register it with the admin or follow the CLI prompt to fetch from GitHub.
Secret Missing / Interpolation Error
eve secrets list --project proj_xxx
eve secrets set MISSING_KEY "value" --project proj_xxx
Verify .eve/dev-secrets.yaml exists for local interpolation.
Deploy Job Failed
eve job follow <job-id>
eve job diagnose <job-id>
eve job result <job-id>
Check for registry auth errors, missing secrets, or healthcheck failures.
Registry Push Fails with UNAUTHORIZED
If build jobs fail with UNAUTHORIZED: authentication required when pushing:
- Verify secrets are set:
eve secrets list --project proj_xxx - If using a custom BYO registry, verify credentials map to
registry.host - Confirm the imagePull metadata in your manifest is correct
- Add OCI source label to Dockerfile:
LABEL org.opencontainers.image.source="https://github.com/ORG/REPO"
Some registries require repository-linked package metadata or workspace-level auth alignment.
Build Failures
Symptoms
- Pipeline fails at build step
eve build diagnoseshows run status =failed
Triage
eve build list --project <id> # Find recent builds
eve build diagnose <build_id> # Full state dump
eve build logs <build_id> # Raw build output
Common Causes
Registry authentication:
- If using custom registry mode, verify
REGISTRY_USERNAMEandREGISTRY_PASSWORDsecrets are set (or provider-equivalent registry credentials). With managed registry (registry: "eve"), this step is usually not required. - Ensure credentials can access the configured registry account and namespace
- Check:
eve secrets list --project <id>
Dockerfile issues:
- Service must have
build.contextin manifest pointing to directory with Dockerfile - Dockerfile path defaults to
<context>/Dockerfile - Multi-stage builds work with BuildKit; may fail with Kaniko
Workspace/clone errors:
- Build requires workspace at the correct git SHA
- Check
eve build diagnosefor workspace preparation errors
Image push failures:
- OCI labels help link packages to repos: add
LABEL org.opencontainers.image.source="https://github.com/OWNER/REPO"to Dockerfile - Ensure registry host and auth match manifest
registry.hostwhen using BYO/custom registry
Job Stuck or Blocked
eve job show <job-id>
eve job dep list <job-id>
Resolve dependencies or update phase with eve job update if appropriate.
App Not Reachable After Deploy
- Confirm deploy job succeeded (
eve job result). - Validate ingress host pattern:
{service}.{orgSlug}-{projectSlug}-{env}.{domain}. - Ensure service port matches
x-eve.ingress.port.
Escalation
If CLI output is insufficient, collect:
eve system healtheve job diagnose <job-id>- manifest diff (recent changes)
Then hand off to the platform operator.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★27 reviews- ★★★★★Sakshi Patil· Sep 25, 2024
Solid pick for teams standardizing on skills: eve-troubleshooting is focused, and the summary matches what you get after install.
- ★★★★★Xiao Jackson· Sep 25, 2024
eve-troubleshooting has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Diya Diallo· Sep 21, 2024
Registry listing for eve-troubleshooting matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Kofi Agarwal· Sep 5, 2024
eve-troubleshooting fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Meera Nasser· Aug 24, 2024
eve-troubleshooting has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Chaitanya Patil· Aug 16, 2024
I recommend eve-troubleshooting for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Amina Garcia· Aug 16, 2024
eve-troubleshooting fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Aarav Nasser· Aug 12, 2024
Useful defaults in eve-troubleshooting — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Rahul Santra· Jul 27, 2024
Useful defaults in eve-troubleshooting — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Evelyn Brown· Jul 15, 2024
Solid pick for teams standardizing on skills: eve-troubleshooting is focused, and the summary matches what you get after install.
showing 1-10 of 27