What problem does it solve? Writing correct, performant Cypher against a large Neo4j graph is error-prone: syntax traps, deprecated clauses, missing indexes, and RBAC misconfigurations cause failed queries and slow performance. This Skill provides a CLI-first reference and execution workflow for authoring, validating, and running Cypher 25 queries safely. ## Core Features & Use Cases - Cypher Authoring & Validation: Enforces Cypher 25 defaults, schema-first querying, a 40+ syntax trap table, and EXPLAIN/PROFILE-based performance tuning with index guidance. - Multi-Path Execution: Runs queries via neo4j-cli over Bolt (default), Python Bolt driver, Neuronet MCP tools, or an HTTP Query API wrapper, with stored credentials and GCP Secret Manager support. - Admin & RBAC Operations: Covers user/role/privilege management, property-based access control (PBAC), built-in roles, and permission audits against the system database. - Use Case: A developer needs to grant a new microservice write access to specific node labels, then verify the grants. The Skill supplies the exact GRANT statements, the minimum-privilege mapping table, and the verification query using SHOW PRIVILEGES with segment filtering. ## Quick Start Ask the assistant to inspect the graph schema and write an optimized Cypher query, for example: show me the schema and count nodes per label using neo4j-cli.