{"slug":"neo4j-contrib-neo4j-cli-tools-skill","name":"neo4j-cli-tools-skill","description":"Use when working with Neo4j command-line tools — neo4j-cli (modern unified","long_description":"---\nname: neo4j-cli-tools-skill\ndescription: Use when working with Neo4j command-line tools — neo4j-cli (modern unified\n  CLI — Cypher via Bolt, schema inspection, Aura management, Docker containers, credential\n  management, agent skill catalog install; install with curl -sSfL https://neo4j.sh/install.sh | bash),\n  neo4j-admin (backup, restore, import, memory sizing), cypher-shell (ad-hoc queries,\n  scripting, CI/CD), or neo4j-mcp (quick MCP server install).\n  Does NOT cover Cypher query authoring — use neo4j-cypher-skill.\n  Does NOT cover driver upgrades — use neo4j-migration-skill.\n  Does NOT cover full MCP editor configuration — use neo4j-mcp-skill.\nallowed-tools: WebFetch, Bash\nversion: 1.0.12\n---\n\n# Neo4j CLI Tools skill\n\n## When to Use\n\n- Cypher queries, schema inspection, Aura, Docker, credentials, agent skills → `neo4j-cli` (**preferred**)\n- Admin tasks: backup, restore, import, memory sizing → `neo4j-admin`\n- Ad-hoc queries, scripting, CI/CD (Java required) → `cypher-shell`\n- MCP server install → `neo4j-mcp`\n\n## When NOT to Use\n\n- **Writing or optimizing Cypher queries** → `neo4j-cypher-skill`\n- **Upgrading Neo4j drivers or migrating Cypher syntax** → `neo4j-migration-skill`\n- **Starting a new Neo4j project from scratch** → `neo4j-getting-started-skill`\n\n## Available CLI Tools\n\n### 1. neo4j-cli\n\nModern unified CLI. Bolt-native Cypher, schema inspection, Aura management, local Docker, credential storage, agent skill catalog install. Single binary — no Java required.\n\n**Install:**\n```bash\ncurl -sSfL https://neo4j.sh/install.sh | bash   # recommended\nbrew install neo4j-labs/tap/neo4j-cli            # Homebrew\npip install neo4j-cli / pipx install neo4j-cli   # PyPI\nnpm i -g @neo4j-labs/cli                         # npm\n```\n\n**Self-update:** `neo4j-cli update` (also refreshes installed skills automatically)\n\n**Key subcommands:**\n\n| Subcommand | Purpose |\n|---|---|\n| `neo4j-cli query [cypher]` | Run Cypher via Bolt — auto-rewrites HTTP URIs |\n| `neo4j-cli query :schema` | Inspect labels, rel types, indexes, constraints |\n| `neo4j-cli query :embed [text]` | Compute embedding vector standalone |\n| `neo4j-cli aura instance ...` | Provision and manage Aura instances |\n| `neo4j-cli aura agent ...` | Manage Aura Agents (list/get/create/invoke) |\n| `neo4j-cli docker create/start/stop/delete` | Manage local Neo4j Docker containers |\n| `neo4j-cli credential aura-client ...` | Store Aura API credentials |\n| `neo4j-cli credential dbms ...` | Store Neo4j connection profiles (URI + auth) |\n| `neo4j-cli credential embed ...` | Store embedding provider credentials |\n| `neo4j-cli skill install [skill-name]` | Install self-skill or any catalog skill |\n| `neo4j-cli skill list / check / remove` | Manage installed agent skills |\n| `neo4j-cli update` | Self-update binary + refresh installed skills |\n\n**Key patterns:**\n```bash\n# Schema-first workflow: always inspect schema before writing Cypher\nneo4j-cli query :schema --format toon\n\n# Run Cypher (bolt URIs auto-rewritten; HTTP URIs rewritten to Bolt)\nneo4j-cli query \"MATCH (n:Person) RETURN n.name LIMIT 5\" \\\n  --uri neo4j+s://xxx.databases.neo4j.io --username neo4j --password $PASS\n\n# Inline embedding parameter (text → vector; $q bound to []float32)\nneo4j-cli query \"MATCH (c) SEARCH c IN (VECTOR INDEX chunk_embedding FOR \\$q LIMIT 5) SCORE AS score RETURN c.text, score\" \\\n  --param q:embed=\"graph database performance\"\n\n# Store a connection profile, then query without flags\nneo4j-cli credential dbms add --name prod \\\n  --uri neo4j+s://xxx.databases.neo4j.io --username neo4j --password $PASS\nneo4j-cli query --credential prod \"MATCH (n) RETURN count(n)\"\n\n# Local Docker: persistent or ephemeral\nneo4j-cli docker create --name dev --wait --rw\nneo4j-cli query --credential dev 'RETURN 1 AS n'\nneo4j-cli docker create --name tmp --ephemeral --env-out-file /tmp/n.env --wait --rw\nneo4j-cli query --env /tmp/n.env 'RETURN 1 AS n'\n\n# Install skills from catalog (neo4j-contrib/neo4j-skills)\nneo4j-cli skill install                          # self-skill into all detected agents\nneo4j-cli skill install neo4j-cypher-skill       # one catalog skill, all agents\nneo4j-cli skill install --all                    # self-skill + every catalog skill\nneo4j-cli skill install --agent claude-code      # scope to one agent\nneo4j-cli skill check                            # detect drift after upgrades\n```\n\n**Agent output:** Always use `--format toon` — ~40% fewer tokens than JSON. Set as default: `neo4j-cli config set format toon`.\n\n**Write gate:** Write operations require `--rw` under agent harnesses. Do NOT add it preemptively — if a command fails with \"this command writes; pass --rw to allow it\", surface the error and ask the user once.\n\n**Async operations:** `instance create/resize/destroy` and `docker create` accept `--wait` to block until terminal state.\n\n**Credentials precedence:** flag > OS env (`NEO4J_URI`, `NEO4J_USERNAME`, `NEO4J_PASSWORD`, `NEO4J_DATABASE`) > `.env` walk-up > stored credential.\n\n**Supported agents:** Claude Code, Cursor, Windsurf, Copilot, Gemini CLI, Cline, Codex, OpenCode, Junie, and more.\n\nFull reference: `neo4j-cli skill install` keeps an always-in-sync skill in your agent.\n\n---\n\n### 2. neo4j-admin\n\nIncluded with Neo4j. Backup, restore, dump/load, CSV import, memory sizing, password reset. Run as Neo4j system user.\n\nReference: [neo4j-admin-reference.md](references/neo4j-admin-reference.md)\n\n### 3. cypher-shell\n\nInteractive Cypher REPL. Requires Java 21. Included with Neo4j. Use for ad-hoc queries, file-based batch scripting, CI/CD pipelines.\n\nReference: [cypher-shell-reference.md](references/cypher-shell-reference.md)\n\n### 4. aura-cli\n\nLegacy Aura cloud CLI. **Prefer `neo4j-cli aura` for new work** — covers all aura-cli operations plus credential storage, Docker, and agent skills.\n\nReference: [aura-cli-reference.md](references/aura-cli-reference.md)\n\n### 5. neo4j-mcp\n\nMCP server for AI agent integration. For full install + editor config → use `neo4j-mcp-skill` (covers Claude Code, Desktop, Cursor, Windsurf, VS Code, Kiro, stdio vs HTTP transport, troubleshooting).\n\n```bash\npip install neo4j-mcp-server && neo4j-mcp --version\n```\n\nReference: [neo4j-mcp-reference.md](references/neo4j-mcp-reference.md)\n\n## Backup and Recovery\n\n### Edition gate\n\nOnline backup requires **Enterprise Edition**. Community Edition users must use dump/load only (database must be offline).\n\n### Backup (Enterprise — database stays online)\n\n```bash\n# Full online backup — database stays online during backup\nneo4j-admin database backup \\\n  --to-path=/backups/ \\\n  --database=neo4j \\\n  --compress\n\n# Differential backup — only changes since last full backup (faster)\nneo4j-admin database backup \\\n  --to-path=/backups/ \\\n  --database=neo4j \\\n  --type=DIFF \\\n  --compress\n\n# Backup to cloud storage (S3, GCS, or HTTPS)\nneo4j-admin database backup \\\n  --to-path=s3://my-bucket/neo4j-backups/ \\\n  --database=neo4j\n```\n\n### Restore (Enterprise)\n\n**AGENT GATE — destructive operation**: Before running restore, show the user the exact command and target database name, and wait for explicit confirmation. A restore overwrites the existing database.\n\n```bash\n# Restore from a full or differential backup\n# Requires DB to be stopped, or use --force-offline for a running instance\nneo4j-admin database restore \\\n  --from-path=/backups/neo4j-2026-01-15T10-00-00/ \\\n  --database=neo4j \\\n  --overwrite-destination=true\n\n# Restore to a new database name (non-destructive path)\nneo4j-admin database restore \\\n  --from-path=/backups/neo4j-2026-01-15T10-00-00/ \\\n  --database=neo4j-restored\n```\n\n### Dump / Load (all editions — database must be offline)\n\nUse for migrations, dev/test data transfers, and Community Edition backups.\n\n```bash\n# Dump — stop the database first, or pass --force-offline\nneo4j-admin database dump --to-path=/exports/ neo4j\n\n# Load — overwrites if target DB exists\nneo4j-admin database load \\\n  --from-path=/exports/neo4j.dump \\\n  --database=neo4j \\\n  --overwrite-destination=true\n```\n\n**AGENT GATE — destructive operation**: Before running load with `--overwrite-destination=true`, confirm target database name and path with the user.\n\n### Key flags\n\n| Flag | Notes |\n|---|---|\n| `--compress` | Zstd compression on backup archives |\n| `--type=DIFF` | Differential: only changes since last full backup |\n| `--to-path` | Local path or `s3://`, `gs://`, `https://` |\n| `--overwrite-destination=true` | Required if target database already exists |\n| `--force-offline` | Allow backup/restore of a running database in some scenarios |\n\n### Point-in-time restore strategy\n\n- **Full backup**: weekly (e.g. every Sunday)\n- **Differential backup**: daily (captures only changes since last full)\n- **Naming convention**: include timestamp in path — e.g. `/backups/neo4j-2026-01-19T02-00-00/`\n- **Restore sequence**: apply full backup first, then each differential in chronological order\n\n```bash\n# Example: restore Sunday full + Monday + Tuesday differentials\nneo4j-admin database restore \\\n  --from-path=/backups/neo4j-2026-01-19T02-00-00/ \\\n  --database=neo4j --overwrite-destination=true\n\nneo4j-admin database restore \\\n  --from-path=/backups/neo4j-2026-01-20T02-00-00/ \\\n  --database=neo4j --overwrite-destination=true\n\nneo4j-admin database restore \\\n  --from-path=/backups/neo4j-2026-01-21T02-00-00/ \\\n  --database=neo4j --overwrite-destination=true\n```\n\n---\n\n## Environment Variables (neo4j-admin / cypher-shell)\n\n- `NEO4J_URI` / `NEO4J_ADDRESS` — connection URI\n- `NEO4J_USERNAME` / `NEO4J_PASSWORD` / `NEO4J_DATABASE`\n- `NEO4J_CONF` — path to neo4j.conf directory\n- `NEO4J_HOME` — Neo4j installation directory\n\nPrecedence: flags > env vars > config files. neo4j-cli uses its own credential store — see `neo4j-cli credential dbms`.\n\n## Resources\n\n- [Neo4j Operations Manual](https://neo4j.com/docs/operations-manual/current/)\n- [Cypher Shell Documentation](https://neo4j.com/docs/operations-manual/current/cypher-shell/)\n- [Aura CLI GitHub](https://github.com/neo4j/aura-cli)\n- [Neo4j MCP Documentation](https://neo4j.com/docs/mcp/current/)\n- [Neo4j Developer Portal](https://neo4j.com/developer/)\n\n---\n\n## Checklist\n\n- [ ] Correct tool selected: neo4j-cli (preferred) / neo4j-admin / cypher-shell / neo4j-mcp\n- [ ] If using neo4j-cli: `neo4j-cli skill install` run after install or upgrade (keeps skill in sync)\n- [ ] Credentials via env or `credential dbms`; not hardcoded\n- [ ] Using `--format toon` for agent-facing neo4j-cli output\n- [ ] Destructive ops confirmed before execution\n- [ ] Post-op verify: connect + `SHOW INDEXES` + count\n- [ ] Backup taken before restore or schema change\n","tagline":"Use when working with Neo4j command-line tools — neo4j-cli (modern unified","category":"automation","tags":["agent-skill"],"author":"neo4j-contrib","verified":false,"attribution":{"status":"registry_indexed","statusLabel":"Registry indexed","shortLabel":"REGISTRY INDEXED","sourceLabel":"recursive skill source sync","sourceDetail":"neo4j-contrib/neo4j-skills","creatorName":"neo4j-contrib","creatorUrl":"https://github.com/neo4j-contrib","sourceUrl":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","indexedBy":"OpenAgentSkill community index","claimUrl":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill#claim-this-skill","claimCta":"Claim this skill","trustNote":"This listing was indexed from public sources and is not marked official until a maintainer claim is approved.","publicNote":"Attribution links to the public repository or creator profile. Creators can claim the listing to update ownership signals."},"stats":{"stars":101,"forks":35,"verified_installs":0,"successful_runs":0,"total_outcomes":0,"rating":0,"review_count":0,"quality_score":37.46},"quality":{"score":67,"tier":"promising","label":"Promising","summary":"Useful candidate, but compare it with alternatives before adopting.","signals":[{"label":"GitHub stars","value":"101","tone":"neutral"},{"label":"Freshness","value":"16d ago","tone":"positive"},{"label":"Install ready","value":"Yes","tone":"positive"},{"label":"License","value":"MIT","tone":"neutral"}],"warnings":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification)."]},"trust":{"version":"trust-score-v5","score":54,"base_score":62,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["54/100 Trust Score v5","62/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"101 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"101 stars, 35 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"16d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":70,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":28,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"101 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"101 stars, 35 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"16d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"101 GitHub stars","repoActivity":"101 stars, 35 forks","lastPushed":"16d since push","license":"MIT","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","install":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","16d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["automation","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","trust_score":54,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["automation","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":62,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v5":{"version":"trust-score-v5","score":54,"base_score":62,"outcome_confidence":0,"tier":"risk","label":"Do not auto-install","summary":"Trust Score v5 found insufficient evidence for agent installation. Treat this as discovery material, not an executable recommendation.","recommendedAction":"Choose a stronger alternative or inspect the source manually before any install attempt.","decision":{"install_policy":"human_review_before_install","auto_install_allowed":false,"human_review_required":true,"sandbox_first":true,"agent_action":"Compare alternatives before installing.","reasoning":["54/100 Trust Score v5","62/100 Trust Score v4 baseline","Needs more real agent outcomes before unattended install","Install path is available","Review before production"],"review_required_when":["The workspace contains production secrets, payments, private customer data, or irreversible actions.","The install command requests shell, network, credential, database, or broad filesystem access.","Outcome evidence is missing, recently failed, or required human review.","Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"]},"dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"101 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"101 stars, 35 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"16d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":70,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":28,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"101 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"101 stars, 35 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"16d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern","Outcome loop is ready but needs first real agent run"],"warnings":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution","No real agent outcome reports yet","Human review required before unattended installation"],"evidence":{"stars":"101 GitHub stars","repoActivity":"101 stars, 35 forks","lastPushed":"16d since push","license":"MIT","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","install":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet","agentProvenScore":0,"outcomeConfidence":"0%","installPolicy":"human_review_before_install"},"installReadiness":{"ready":true,"command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","16d since push","Trust Score v5 requires review or sandbox-only use before install."]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Compare alternatives before installing."},"outcome_loop":{"version":"openagentskill-agent-outcome-v4","required_after_install":true,"endpoint":"/api/agent/outcome","method":"POST","event_id_source":"feedback.event_id, install_receipt.resolve_event_id, or decision_packet.outcome_feedback.event_id","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"required_fields":["event_id","skill_slug","task"],"quality_fields":["task_success","output_quality","error_type","human_review_required","used_in_production","workspace","evidence_url","time_to_useful_ms","source_version"],"ranking_inputs_updated":["Trust Score v5 outcome confidence","Agent Proven Score","Resolve ranking task-fit evidence","Skill detail machine-readable metadata","Outcome leaderboard"]},"agent_contract":{"suited_tasks":["automation","agent-skill"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"install_command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","trust_score":54,"trust_version":"trust-score-v5","risk_level":"medium","do_not_use_when":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"before_install":["Read the audit page and machine-readable metadata.","Confirm the install command, license, and permission surface fit the workspace.","Get explicit human approval or choose an alternative before installing."],"after_run":["Report the outcome to /api/agent/outcome using the resolve event id.","Include output_quality, workspace, human_review_required, and evidence_url when available.","Re-resolve before broad production rollout."]},"bestFor":["automation","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"backward_compatible":{"trust_score_v4":{"version":"trust-score-v4","score":62,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection."}}},"trust_score_v4":{"version":"trust-score-v4","score":62,"tier":"review","label":"Manual review","summary":"Potentially useful, but at least one trust signal needs human inspection.","recommendedAction":"Inspect the repository, license, and recent activity before connecting it to agent workflows.","dimensions":[{"id":"github_adoption","label":"GitHub adoption","score":62,"weight":0.13,"status":"info","detail":"101 GitHub stars"},{"id":"repo_activity","label":"Stars/forks activity","score":57,"weight":0.08,"status":"warn","detail":"101 stars, 35 forks; issue activity unavailable in current metadata"},{"id":"maintenance","label":"Recent maintenance","score":100,"weight":0.14,"status":"pass","detail":"16d since push"},{"id":"license","label":"License clarity","score":86,"weight":0.09,"status":"pass","detail":"MIT"},{"id":"documentation","label":"README/SKILL.md completeness","score":70,"weight":0.14,"status":"info","detail":"Public metadata needs stronger README/SKILL.md context"},{"id":"dependency_risk","label":"Dependency/runtime risk","score":28,"weight":0.12,"status":"fail","detail":"command execution surface, credential or environment access"},{"id":"installability","label":"Install availability","score":92,"weight":0.1,"status":"pass","detail":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"},{"id":"install_safety","label":"Install command safety","score":92,"weight":0.1,"status":"pass","detail":"standard package or runtime install path"},{"id":"permission_surface","label":"Permission surface","score":18,"weight":0.07,"status":"fail","detail":"secrets or environment access, shell or command execution"},{"id":"repository","label":"Repository evidence","score":86,"weight":0.04,"status":"pass","detail":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill"},{"id":"review_status","label":"Review status","score":66,"weight":0.05,"status":"info","detail":"AI review data available"},{"id":"agent_outcomes","label":"Agent Proven outcomes","score":54,"weight":0.13,"status":"info","detail":"No agent outcome data yet"}],"checks":[{"status":"info","label":"GitHub adoption","detail":"101 GitHub stars"},{"status":"warn","label":"Stars/forks activity","detail":"101 stars, 35 forks; issue activity unavailable in current metadata"},{"status":"pass","label":"Recent maintenance","detail":"16d since push"},{"status":"pass","label":"License clarity","detail":"MIT"},{"status":"info","label":"README/SKILL.md completeness","detail":"Public metadata needs stronger README/SKILL.md context"},{"status":"fail","label":"Dependency/runtime risk","detail":"command execution surface, credential or environment access"},{"status":"pass","label":"Install availability","detail":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"},{"status":"pass","label":"Install command safety","detail":"standard package or runtime install path"},{"status":"fail","label":"Permission surface","detail":"secrets or environment access, shell or command execution"},{"status":"pass","label":"Repository evidence","detail":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill"},{"status":"info","label":"Review status","detail":"AI review data available"},{"status":"info","label":"Agent Proven outcomes","detail":"No agent outcome data yet"},{"status":"warn","label":"Ownership","detail":"No approved owner claim yet"},{"status":"info","label":"OpenAgentSkill usage","detail":"No local usage activity yet"},{"status":"info","label":"Agent outcomes","detail":"No agent outcome data yet"}],"strengths":["AI review approved","Install path is available","Repository evidence is available","Recently maintained repository","Install command has no obvious high-risk pattern"],"warnings":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"],"evidence":{"stars":"101 GitHub stars","repoActivity":"101 stars, 35 forks","lastPushed":"16d since push","license":"MIT","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","install":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"installReadiness":{"ready":true,"command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","policy":"human_review_before_install","label":"Human review before install","notes":["Install path is available","Repository evidence is available","License is declared","No Agent Proven outcome evidence yet","16d since push"]},"agentCompatibility":["Codex","Claude Code","Cursor","OpenAgentSkill CLI"],"riskSummary":{"level":"medium","label":"Review before production","notes":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"outcomeEvidence":{"total":0,"successes":0,"failures":0,"notRelevant":0,"successRate":null,"installAttempts":0,"riskBlocked":0,"setupRequired":0,"installSuccessRate":null,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"recentSuccessRate":null,"recentFailureRate":null,"uniqueAgents":0,"agentProvenScore":0,"agentProvenLabel":"Needs first agent run","lastOutcomeAt":null,"label":"No agent outcome data yet"},"autoInstall":{"allowed":false,"sandboxRequired":true,"policy":"human_review_before_install","reason":"Human review or sandbox validation is required before automatic installation."},"bestFor":["automation","agent-skill"],"doNotUseFor":["Production credentials, payments, or irreversible account changes without explicit human review","Sensitive private data before reviewing repository code, license, and permission surface","Automatic installation in a production workspace"],"knownRisks":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"outcome_stats":null,"safety":{"score":29,"level":"avoid_auto_install","label":"Avoid automatic install","safety_tier":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","summary":"This skill should not be selected by an agent without explicit human security review.","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","auto_install_policy":"block","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"auto_install_allowed":false,"human_review_required":true,"blocked":true,"audit_risk":"needs_review","permission_hints":[{"id":"shell","label":"Shell or command execution","reason":"Skill metadata references terminal, CLI, shell, subprocess, or command execution workflows.","severity":"high"},{"id":"network","label":"Network access","reason":"Skill likely fetches remote pages, APIs, repositories, or external services.","severity":"medium"},{"id":"filesystem","label":"Filesystem access","reason":"Skill may read or write project files, documents, generated artifacts, or local workspace state.","severity":"medium"},{"id":"secrets","label":"Secrets or environment access","reason":"Skill metadata references credentials, tokens, environment variables, or secret-bearing workflows.","severity":"high"},{"id":"database","label":"Database access","reason":"Skill may inspect schemas, query databases, or work with persistent stores.","severity":"medium"}],"policy_warnings":["High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review"],"constraints_applied":{"max_risk":"medium","needs_install_command":true,"min_stars":0}},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","badge":"BLOCKED","auto_install_policy":"block","auto_install_allowed":false,"blocked":true,"human_review_required":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","reasons":["Metadata combines secrets access with shell or command execution","High-risk permission hints: Shell or command execution, Secrets or environment access"]},"eval":{"version":"openagentskill-skill-eval-v1","status":"failed","score":62,"risk_level":"high","decision":{"recommendation":"do_not_auto_install","reason":"Agent safety gate: This skill should not be selected by an agent without explicit human security review.","auto_install_allowed":false,"policy":"block","human_review_required":true},"blockers":["Agent safety gate: This skill should not be selected by an agent without explicit human security review.","Permission surface: secrets or environment access, shell or command execution"],"warnings":["Trust score: Potentially useful, but at least one trust signal needs human inspection.","Audit score: Needs review","README/SKILL.md completeness: Public metadata needs stronger README/SKILL.md context","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"],"validation_plan":["Inspect repository, README/SKILL.md, license, and recent commits before production use.","Install in an isolated workspace or sandbox with no production secrets available.","Run the smallest representative task and record files touched, commands run, network access, and outputs.","Compare the selected skill against at least one alternative when the eval status is review or failed.","Promote only after the agent reports a successful verification result and unresolved warnings are accepted."],"checks":[{"id":"task_fit","label":"Task fit","status":"pass","score":94,"required_for_auto_install":true,"detail":"Task wording matches this skill metadata.","evidence":["Evaluate neo4j-cli-tools-skill before installing it in an agent workflow","automation","Workflow automation workflows; Claude Code teams; builders willing to evaluate younger projects"]},{"id":"install_path","label":"Install path","status":"pass","score":92,"required_for_auto_install":true,"detail":"Install handoff is available.","evidence":["npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"]},{"id":"install_safety","label":"Install command safety","status":"pass","score":92,"required_for_auto_install":true,"detail":"standard package or runtime install path","evidence":["npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill"]},{"id":"trust_score","label":"Trust score","status":"warn","score":62,"required_for_auto_install":true,"detail":"Potentially useful, but at least one trust signal needs human inspection.","evidence":["Manual review","101 GitHub stars","MIT"]},{"id":"audit_score","label":"Audit score","status":"warn","score":73,"required_for_auto_install":true,"detail":"Needs review","evidence":["Dependency or permission surface needs review"]},{"id":"agent_safety_gate","label":"Agent safety gate","status":"fail","score":29,"required_for_auto_install":true,"detail":"This skill should not be selected by an agent without explicit human security review.","evidence":["Do not auto-install. Inspect the source, dependencies, and permission surface first.","Metadata combines secrets access with shell or command execution"]},{"id":"readme_skillmd_completeness","label":"README/SKILL.md completeness","status":"warn","score":70,"required_for_auto_install":false,"detail":"Public metadata needs stronger README/SKILL.md context","evidence":["Usable metadata, review docs"]},{"id":"license_clarity","label":"License clarity","status":"pass","score":86,"required_for_auto_install":true,"detail":"MIT","evidence":["MIT"]},{"id":"recent_maintenance","label":"Recent maintenance","status":"pass","score":100,"required_for_auto_install":false,"detail":"16d since push","evidence":["16d since push"]},{"id":"permission_surface","label":"Permission surface","status":"fail","score":18,"required_for_auto_install":true,"detail":"secrets or environment access, shell or command execution","evidence":["Shell or command execution: high","Network access: medium","Filesystem access: medium"]},{"id":"alternatives","label":"Alternatives available","status":"info","score":55,"required_for_auto_install":false,"detail":"No close alternatives were found in the current shortlist.","evidence":[]}],"endpoints":{"web":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill/evals","api":"/api/agent/evals?slug=neo4j-contrib-neo4j-cli-tools-skill","text":"/api/agent/evals?slug=neo4j-contrib-neo4j-cli-tools-skill&format=text"}},"agent_readable_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"neo4j-contrib-neo4j-cli-tools-skill","name":"neo4j-cli-tools-skill","description":"Use when working with Neo4j command-line tools — neo4j-cli (modern unified","category":"automation","url":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","github_repo":"neo4j-contrib/neo4j-skills"},"suited_tasks":["Workflow automation workflows","Claude Code teams","builders willing to evaluate younger projects","Move data between tools","Transform files","Trigger repeatable actions","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","CLI"],"install":{"command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add neo4j-contrib-neo4j-cli-tools-skill"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"neo4j-cli-tools-skill\" agent skill from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"neo4j-cli-tools-skill\" as a Claude Code skill from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"neo4j-cli-tools-skill\" from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/neo4j-contrib-neo4j-cli-tools-skill/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/neo4j-contrib-neo4j-cli-tools-skill"},"trust":{"score":62,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"101 GitHub stars","repoActivity":"101 stars, 35 forks","lastPushed":"16d since push","license":"MIT","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","install":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["automation","agent-skill"],"known_risks":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":73,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":67,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"Database and SQL","maintenance":"16d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure."],"agent_contract":{"task_input":"Use neo4j-cli-tools-skill in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 62/100 Manual review","Audit: 73/100 Needs review","Safety: 29/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"neo4j-contrib-neo4j-cli-tools-skill (neo4j-cli-tools-skill)","install_command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"neo4j-contrib-neo4j-cli-tools-skill","task":"Use neo4j-cli-tools-skill in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill","api":"https://www.openagentskill.com/api/agent/skills/neo4j-contrib-neo4j-cli-tools-skill","audit":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=neo4j-contrib-neo4j-cli-tools-skill&task=Use%20neo4j-cli-tools-skill%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20neo4j-cli-tools-skill%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20neo4j-cli-tools-skill%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/neo4j-contrib-neo4j-cli-tools-skill/install","manifest":"https://www.openagentskill.com/api/registry/manifest/neo4j-contrib-neo4j-cli-tools-skill"}},"machine_metadata":{"version":"openagentskill-agent-metadata-v2","skill":{"slug":"neo4j-contrib-neo4j-cli-tools-skill","name":"neo4j-cli-tools-skill","description":"Use when working with Neo4j command-line tools — neo4j-cli (modern unified","category":"automation","url":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","github_repo":"neo4j-contrib/neo4j-skills"},"suited_tasks":["Workflow automation workflows","Claude Code teams","builders willing to evaluate younger projects","Move data between tools","Transform files","Trigger repeatable actions","Navigate local resources","Run repeatable desktop actions"],"suited_agents":["Codex","Claude Code","Cursor","OpenAgentSkill CLI","OpenAI Agents","CLI"],"install":{"command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","ready":true,"targets":[{"id":"openagentskill-cli","label":"CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add neo4j-contrib-neo4j-cli-tools-skill"},{"id":"codex","label":"Codex","kind":"agent-prompt","value":"Install the \"neo4j-cli-tools-skill\" agent skill from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"claude-code","label":"Claude Code","kind":"agent-prompt","value":"Add \"neo4j-cli-tools-skill\" as a Claude Code skill from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."},{"id":"cursor","label":"Cursor","kind":"agent-prompt","value":"Turn \"neo4j-cli-tools-skill\" from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes."}],"handoff_url":"https://www.openagentskill.com/api/skills/neo4j-contrib-neo4j-cli-tools-skill/install","manifest_url":"https://www.openagentskill.com/api/registry/manifest/neo4j-contrib-neo4j-cli-tools-skill"},"trust":{"score":62,"label":"Manual review","version":"trust-score-v4","install_policy":"human_review_before_install","evidence":{"stars":"101 GitHub stars","repoActivity":"101 stars, 35 forks","lastPushed":"16d since push","license":"MIT","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","install":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","installSafety":"standard package or runtime install path","permissionSurface":"secrets or environment access, shell or command execution","documentation":"Usable metadata, review docs","agentOutcomes":"No agent outcome data yet"},"outcome_evidence":{"total":0,"successes":0,"failures":0,"not_relevant":0,"success_rate":null,"recent_success_rate":null,"recent_failure_rate":null,"install_attempts":0,"install_success_rate":null,"risk_blocked":0,"setup_required":0,"avg_output_quality":null,"production_outcomes":0,"last_outcome_at":null,"label":"No agent outcome data yet"},"auto_install":{"allowed":false,"sandbox_required":true,"reason":"Human review or sandbox validation is required before automatic installation."},"best_for":["automation","agent-skill"],"known_risks":["The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"agent_proven":{"version":"agent-proven-v1","score":0,"tier":"unproven","label":"Needs first agent run","summary":"No agent outcome reports yet. Use Resolve, run one narrow sandbox task, then report the result.","metrics":{"totalOutcomes":0,"successfulOutcomes":0,"failedOutcomes":0,"installAttempts":0,"installSuccessRate":null,"successRate":null,"recentSuccessRate":null,"recentFailureRate":null,"riskBlocked":0,"setupRequired":0,"notRelevant":0,"avgOutputQuality":null,"avgTimeToUsefulMs":null,"productionOutcomes":0,"humanReviewRequired":0,"uniqueAgents":0,"lastOutcomeAt":null},"signals":[],"penalties":["No real agent outcome evidence yet"]},"audit":{"score":73,"risk_level":"needs_review","risk_label":"Needs review","warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access"]},"safety_gate":{"tier":"blocked","label":"Blocked for auto-install","auto_install_policy":"block","auto_install_allowed":false,"human_review_required":true,"blocked":true,"recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first."},"quality":{"score":67,"label":"Promising"},"supply":{"track":"Coding and developer agents","scenario":"Database and SQL","maintenance":"16d since push","risk":"Needs review"},"alternative_skills":[],"do_not_use_when":["teams that need a vendor-supported SLA","production agents without a repository review","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","No OpenAgentSkill engagement data yet","High-risk permission hints: Shell or command execution, Secrets or environment access","Dependency or permission surface needs review","Permission surface may require sandboxing","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure."],"agent_contract":{"task_input":"Use neo4j-cli-tools-skill in an agent workflow","recommended_action":"Do not auto-install. Inspect the source, dependencies, and permission surface first.","install_policy":"block","minimum_review_before_use":["Trust: 62/100 Manual review","Audit: 73/100 Needs review","Safety: 29/100 Avoid automatic install","Review repository, license, install command, and permission surface before production use."],"expected_agent_output":{"selected_skill":"neo4j-contrib-neo4j-cli-tools-skill (neo4j-cli-tools-skill)","install_command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","risk_summary":"Needs review; Blocked for auto-install; Review before production","verification_result":"Report the smallest successful task, files touched, warnings, and any missing setup."}},"outcome_feedback":{"endpoint":"https://www.openagentskill.com/api/agent/outcome","method":"POST","requires_resolve_event_id":true,"event_id_source":"Use install_receipt.outcome_feedback.event_id or feedback.event_id returned by /api/agent/resolve for the current task.","expected_outcomes":["success","failed","not_relevant","blocked_by_risk","setup_required"],"payload_template":{"event_id":"<install_receipt.outcome_feedback.event_id or feedback.event_id from /api/agent/resolve>","skill_slug":"neo4j-contrib-neo4j-cli-tools-skill","task":"Use neo4j-cli-tools-skill in an agent workflow","agent":"codex","outcome":"success","install_used":true,"risk_blocked":false,"setup_required":false,"task_success":true,"output_quality":4,"error_type":null,"human_review_required":false,"workspace":"sandbox","time_to_useful_ms":120000,"notes":"Report the smallest successful task, setup friction, files touched, and risk notes."}},"endpoints":{"web":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill","api":"https://www.openagentskill.com/api/agent/skills/neo4j-contrib-neo4j-cli-tools-skill","audit":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill/audit","eval":"https://www.openagentskill.com/api/agent/evals?slug=neo4j-contrib-neo4j-cli-tools-skill&task=Use%20neo4j-cli-tools-skill%20in%20an%20agent%20workflow&max_risk=medium","resolve":"https://www.openagentskill.com/api/agent/resolve?task=Use%20neo4j-cli-tools-skill%20in%20an%20agent%20workflow&agent=codex&max_risk=medium","receipt":"https://www.openagentskill.com/api/agent/receipt?task=Use%20neo4j-cli-tools-skill%20in%20an%20agent%20workflow&agent=codex&max_risk=medium&format=text","install":"https://www.openagentskill.com/api/skills/neo4j-contrib-neo4j-cli-tools-skill/install","manifest":"https://www.openagentskill.com/api/registry/manifest/neo4j-contrib-neo4j-cli-tools-skill"}},"supply_profile":{"track":{"slug":"coding","label":"Coding and developer agents","shortLabel":"Coding","description":"Code review, repo analysis, testing, CI, GitHub, DevOps, and developer workflow skills."},"scenario":{"label":"Database and SQL","description":"I need my agent to inspect database schemas, write SQL, and explain query results.","useCases":[{"slug":"workflow-automation","title":"Workflow automation"},{"slug":"local-desktop","title":"Local desktop"},{"slug":"rag-knowledge","title":"RAG and knowledge"}]},"applicableAgents":["Claude Code","OpenAI Agents","Cursor","CLI","Codex"],"install":{"ready":true,"command":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","primaryTarget":"CLI","targetCount":4},"githubQuality":{"stars":101,"starsLabel":"101","forks":35,"license":"MIT","qualityScore":67,"trustScore":62,"auditScore":73},"maintenance":{"status":"fresh","label":"16d since push","daysSincePush":16,"lastPushedAt":"2026-08-19T19:45:51+00:00"},"risk":{"level":"needs_review","label":"Needs review","requiresReview":true,"notes":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure.","Quality score needs review"]},"coverageTags":["Coding","Database and SQL","automation","agent-skill"]},"audit":{"audit_score":73,"risk_level":"needs_review","risk_label":"Needs review","quality_score":67,"trust_score":62,"maintenance_score":100,"security_score":67,"install_score":92,"warnings":["Dependency or permission surface needs review","Permission surface may require sandboxing","The SKILL.md suggests `curl -sSfL https://neo4j.sh/install.sh | bash` which executes a remote script; while trusted, it is a supply-chain risk that should be noted or mitigated (e.g., checksum verification).","The skill uses `--password $PASS` in examples; passing secrets via command-line arguments can be visible in process lists. Recommend using environment variables or credential profiles (already supported) to avoid exposure.","Quality score needs review","Permission surface needs review: secrets or environment access, shell or command execution","Stars/forks activity: 101 stars, 35 forks; issue activity unavailable in current metadata","Dependency/runtime risk: command execution surface, credential or environment access","Permission surface: secrets or environment access, shell or command execution"]},"quality_signals":{"model":"v2","star_score":14.06,"usage_score":0,"review_score":5.4,"metadata_score":3,"freshness_score":15},"platforms":["Claude Code","OpenAI Agents","Cursor"],"use_cases":[{"slug":"workflow-automation","title":"Workflow automation","url":"https://www.openagentskill.com/use-cases/workflow-automation"},{"slug":"local-desktop","title":"Local desktop","url":"https://www.openagentskill.com/use-cases/local-desktop"},{"slug":"rag-knowledge","title":"RAG and knowledge","url":"https://www.openagentskill.com/use-cases/rag-knowledge"},{"slug":"browser-automation","title":"Browser automation","url":"https://www.openagentskill.com/use-cases/browser-automation"}],"stacks":[{"slug":"rag-knowledge-base","title":"RAG knowledge base","url":"https://www.openagentskill.com/collections/rag-knowledge-base"},{"slug":"content-growth-agent","title":"Content growth agent","url":"https://www.openagentskill.com/collections/content-growth-agent"},{"slug":"browser-qa-agent","title":"Browser QA agent","url":"https://www.openagentskill.com/collections/browser-qa-agent"}],"install":"npx skills add neo4j-contrib/neo4j-skills --skill neo4j-cli-tools-skill","install_targets":[{"id":"openagentskill-cli","label":"CLI","title":"OpenAgentSkill CLI","kind":"command","value":"npx --yes https://github.com/Leon-Drq/openagentskill/releases/download/cli-v0.3.0/openagentskill-0.3.0.tgz add neo4j-contrib-neo4j-cli-tools-skill","description":"Resolve policy, run the source installer safely, and report a verified install receipt.","copyLabel":"Copy command"},{"id":"codex","label":"Codex","title":"Codex install prompt","kind":"agent-prompt","value":"Install the \"neo4j-cli-tools-skill\" agent skill from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill. Read its SKILL.md or equivalent instructions first, install only the files needed for this workspace, and summarize any required setup before using it. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"codex\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Give Codex a repo-aware install prompt when the skill is not available through a local CLI.","copyLabel":"Copy prompt"},{"id":"claude-code","label":"Claude Code","title":"Claude Code skill prompt","kind":"agent-prompt","value":"Add \"neo4j-cli-tools-skill\" as a Claude Code skill from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill. Inspect the skill instructions, place the reusable skill files in the appropriate local skills location for this project, and report the activation steps. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"claude-code\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this prompt to ask Claude Code to add the skill and explain the local activation steps.","copyLabel":"Copy prompt"},{"id":"cursor","label":"Cursor","title":"Cursor rule prompt","kind":"agent-prompt","value":"Turn \"neo4j-cli-tools-skill\" from https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill into a reusable Cursor project rule or agent instruction. Preserve the core workflow, adapt paths to this repo, and keep the rule scoped to tasks where it is relevant. Skill purpose: Use when working with Neo4j command-line tools — neo4j-cli (modern unified After the install attempt, report the result to https://www.openagentskill.com/api/agent/outcome with POST JSON {\"event_id\":\"install_<unique-id>\",\"skill_slug\":\"neo4j-contrib-neo4j-cli-tools-skill\",\"task\":\"Install neo4j-cli-tools-skill\",\"agent\":\"cursor\",\"outcome\":\"success\",\"install_used\":true}. Replace event_id with a unique value and outcome with success or failed. Report success only after the skill is installed and a minimal verification passes.","description":"Use this when installing as Cursor project rules or reusable agent instructions.","copyLabel":"Copy prompt"}],"repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","github_repo":"neo4j-contrib/neo4j-skills","version":"1.0.12","license":"MIT","urls":{"web":"https://www.openagentskill.com/skills/neo4j-contrib-neo4j-cli-tools-skill","repository":"https://github.com/neo4j-contrib/neo4j-skills/tree/main/neo4j-cli-tools-skill","api":"/api/agent/skills/neo4j-contrib-neo4j-cli-tools-skill","install_api":"/api/skills/neo4j-contrib-neo4j-cli-tools-skill/install"},"meta":{"created_at":"2026-08-19T20:36:35.503922+00:00","updated_at":"2026-09-01T11:59:28.941454+00:00","agent_friendly":true}}