- Read files in full before making wide-ranging changes, before editing files you have not already fully inspected, and when the user asks you to investigate or audit something. Do not rely only on search snippets for broad changes.
- No
anytypes unless absolutely necessary - Check node_modules for external API type definitions instead of guessing
- NEVER use inline imports - no
await import("./foo.js"), noimport("pkg").Typein type positions, no dynamic imports for types. Always use standard top-level imports. - NEVER remove or downgrade code to fix type errors from outdated dependencies; upgrade the dependency instead
- Always ask before removing functionality or code that appears to be intentional
- Do not preserve backward compatibility unless the user explicitly asks for it
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
| { | |
| "providers": { | |
| "tokenrouter": { | |
| "baseUrl": "https://api.tokenrouter.com/v1", | |
| "apiKey": "$TOKENROUTER_API_KEY", | |
| "api": "openai-completions", | |
| "compat": { | |
| "supportsDeveloperRole": false | |
| }, | |
| "models": [ |
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
| { | |
| "providers": { | |
| "cpa-ant": { | |
| "baseUrl": "http://127.0.0.1:8317", | |
| "apiKey": "CLI_PROXY_API_KEY", | |
| "api": "anthropic-messages", | |
| "models": [ | |
| { | |
| "id": "claude-haiku-4.5", | |
| "name": "Claude Haiku 4.5", |
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
| // If you'd like to override the default keybindings completely, be sure to change "keybinds" to "keybinds clear-defaults=true" | |
| keybinds { | |
| normal { | |
| // uncomment this and adjust key if using copy_on_select=false | |
| // bind "Alt c" { Copy; } | |
| } | |
| locked { | |
| bind "Ctrl g" { SwitchToMode "Normal"; } | |
| } | |
| resize { |
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
| { | |
| "providers": { | |
| "cpa": { | |
| "baseUrl": "http://127.0.0.1:8317/v1", | |
| "apiKey": "CLI_PROXY_API_KEY", | |
| "api": "openai-completions", | |
| "models": [ | |
| { | |
| "id": "step-3.5-flash", | |
| "name": "StepFun Step 3.5 Flash (Free)", |
Comprehensive guide for interacting with the Memos REST API
Generated from usememos/dotcom and usememos/memos
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
| [Container] | |
| Image=docker.io/amir20/dozzle:v8.4.3 | |
| PublishPort=18080:8080 | |
| Volume=/run/user/1000/podman/podman.sock:/var/run/docker.sock | |
| Environment=DOZZLE_REMOTE_AGENT= | |
| [Service] | |
| Restart=always | |
| [Install] |
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
| forward: | |
| tilt: | |
| source: "tcp:localhost:10350" | |
| destination: "ser4:tcp:localhost:10350" | |
| pathfinder: | |
| source: "tcp:localhost:3000" | |
| destination: "ser4:tcp:localhost:3000" | |
| elastic: | |
| source: "tcp:localhost:9200" | |
| destination: "ser4:tcp:localhost:9200" |
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
| { | |
| "workbench.colorTheme": "Default Light Modern", | |
| "remote.SSH.remotePlatform": { | |
| "ser4": "linux" | |
| }, | |
| "vim.normalModeKeyBindingsNonRecursive": [ | |
| { | |
| "before": [ | |
| "<C-p>" | |
| ], |
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
| FROM curlimages/curl as builder | |
| WORKDIR / | |
| RUN curl -sSf https://temporal.download/cli.sh | sh | |
| FROM gcr.io/distroless/base-debian11 | |
| COPY --from=builder /home/curl_user/.temporalio/bin/temporal /bin/temporal | |
| EXPOSE 7233 | |
| EXPOSE 8233 |
NewerOlder