-
Notifications
You must be signed in to change notification settings - Fork 0
Opensessions #1469
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Opensessions #1469
Changes from all commits
f5f917d
bcf6b8d
990d55c
b1d266f
f9acf06
9f981b7
e031329
8deb150
d1153f7
9fd0cae
7ec0488
ae85636
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| "amp.url": "http://localhost:8317" | ||
| "amp.url": "https://ampcode.com" | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,18 +38,18 @@ quota-exceeded: | |
| # When true, enable authentication for the WebSocket API (/v1/ws). | ||
| ws-auth: false | ||
| # AMP integration | ||
| ampcode: | ||
| upstream-url: "https://ampcode.com" | ||
| upstream-api-key: "__AMP_UPSTREAM_API_KEY__" | ||
| restrict-management-to-localhost: false | ||
| # Map non-prefixed model names to antigravity provider's gemini-prefixed models | ||
| model-mappings: | ||
| - from: "claude-opus-4-5-thinking" | ||
| to: "gemini-claude-opus-4-5-thinking" | ||
| - from: "claude-sonnet-4-6" | ||
| to: "gemini-claude-sonnet-4-6" | ||
| - from: "claude-sonnet-4-6-thinking" | ||
| to: "gemini-claude-sonnet-4-6-thinking" | ||
| # ampcode: | ||
| # upstream-url: "https://ampcode.com" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: The commented AMP template lost its YAML indentation, so uncommenting it produces an invalid or mis-scoped config. Prompt for AI agents |
||
| # upstream-api-key: "__AMP_UPSTREAM_API_KEY__" | ||
| # restrict-management-to-localhost: false | ||
| # Map non-prefixed model names to antigravity provider's gemini-prefixed models | ||
| # model-mappings: | ||
| # - from: "claude-opus-4-5-thinking" | ||
| # to: "gemini-claude-opus-4-5-thinking" | ||
| # - from: "claude-sonnet-4-6" | ||
| # to: "gemini-claude-sonnet-4-6" | ||
| # - from: "claude-sonnet-4-6-thinking" | ||
| # to: "gemini-claude-sonnet-4-6-thinking" | ||
| # Gemini API keys (preferred) | ||
| # gemini-api-key: | ||
| # - api-key: "AIzaSy...01" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,40 +1,3 @@ | ||
| { | ||
| "custom_models": [ | ||
| { | ||
| "model": "claude-opus-4-5-20251101", | ||
| "base_url": "http://127.0.0.1:8317/v1", | ||
| "api_key": "sk-dummy", | ||
| "provider": "anthropic" | ||
| }, | ||
| { | ||
| "model": "claude-haiku-4-5-20251001", | ||
| "base_url": "http://127.0.0.1:8317/v1", | ||
| "api_key": "sk-dummy", | ||
| "provider": "anthropic" | ||
| }, | ||
| { | ||
| "model": "gemini-3-pro-preview", | ||
| "base_url": "http://127.0.0.1:8317/v1", | ||
| "api_key": "sk-dummy", | ||
| "provider": "antigravity" | ||
| }, | ||
| { | ||
| "model": "gpt-5.1", | ||
| "base_url": "http://127.0.0.1:8317/v1", | ||
| "api_key": "sk-dummy", | ||
| "provider": "openai" | ||
| }, | ||
| { | ||
| "model": "gpt-5.1-codex", | ||
| "base_url": "http://127.0.0.1:8317/v1", | ||
| "api_key": "sk-dummy", | ||
| "provider": "openai" | ||
| }, | ||
| { | ||
| "model": "gpt-5.1-codex-max", | ||
| "base_url": "http://127.0.0.1:8317/v1", | ||
| "api_key": "sk-dummy", | ||
| "provider": "openai" | ||
| } | ||
| ] | ||
| "completionSound": "off" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -168,4 +168,12 @@ set -g history-limit 2147483647 | |
| # ============================================================================= | ||
| run-shell ~/ghq/github.com/shunkakinoki/tmux-claude-teams/claude-teams.tmux | ||
|
|
||
| # ============================================================================= | ||
| # TPM plugins | ||
| # ============================================================================= | ||
| set -g @plugin 'Ataraxy-Labs/opensessions' | ||
|
|
||
| # Initialize TPM (keep at bottom) | ||
| run-shell ~/.tmux/plugins/tpm/tpm | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hardcoding the path to TPM (
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: This hardcoded TPM bootstrap path is not provisioned by the repository's Home Manager tmux setup, so tmux will try to source a missing script on reload/startup. Prompt for AI agents |
||
|
|
||
| # Persistent session history logger is managed by launchd/systemd. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -66,6 +66,7 @@ | |
| "sheldon" | ||
| "sshpass" | ||
| "temporal" | ||
| "tmux" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding |
||
| "watchexec" | ||
| "yt-dlp" | ||
| ]; | ||
|
|
@@ -79,10 +80,10 @@ | |
| "block-goose" | ||
| "chatgpt" | ||
| "cmux" | ||
| "claude-code@latest" | ||
| "claude-code" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "claude" | ||
| "codex-app" | ||
| "codex@latest" | ||
| "codex" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "codexbar" | ||
| "conductor" | ||
| "copilot-money" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: Keep AMP pointed at the local proxy. This change bypasses the repository’s
localhost:8317integration and sends requests straight to the upstream service instead.Prompt for AI agents