This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @param {number} originID | |
| * @param {number} destinationID | |
| * @returns {Promise<{ time: number, cost: number }|undefined>} | |
| */ | |
| async function getRoute(originID, destinationID) { | |
| if (originID === destinationID) { | |
| return { time: 0, cost: 0 }; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| description: "Hermes memory system — MEMORY.md and USER.md persistent memory for Cursor" | |
| alwaysApply: true | |
| --- | |
| # Hermes Memory System for Cursor | |
| You have a persistent memory system consisting of two files that survive across sessions. Treat them as your long-term memory. | |
| ## Memory Files |
OlderNewer