Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
197 changes: 113 additions & 84 deletions .agents/AGENTS.md

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -165,29 +165,57 @@ build/spotless-prettier-node-modules-*/serve.js
/ephemeral
# START AI Agent Symlinks
.agent/commands
.agent/commands.bak.*
.agent/rules/
.agent/rules/instructions.md
.agent/rules/instructions.md.bak.*
.agent/skills
.agent/skills.bak.*
.agent/skills/
.agents/skills/*.bak
.claude/commands
.claude/commands.bak.*
.claude/commands/
.claude/skills
.claude/skills.bak.*
.claude/skills/
.codex/commands
.codex/commands.bak.*
.codex/config.toml
.codex/instructions.md
.codex/instructions.md.bak.*
.codex/skills
.codex/skills.bak.*
.gemini/commands
.gemini/commands.bak.*
.gemini/commands/
.gemini/settings.json
.gemini/skills
.gemini/skills.bak.*
.gemini/skills/
.github/agents
.github/agents.bak.*
.github/copilot-instructions.md
.github/copilot-instructions.md.bak.*
.mcp.json
.opencode/command
.opencode/command.bak.*
.opencode/command/
.opencode/skills
.opencode/skills.bak.*
.opencode/skills/
.vscode/mcp.json
AGENTS.md
AGENTS.md.bak.*
CLAUDE.md
CLAUDE.md.bak.*
GEMINI.md
GEMINI.md.bak.*
clients/agent-runtime/CLAUDE.md
clients/agent-runtime/CLAUDE.md.bak.*
clients/web/apps/dashboard/CLAUDE.md
clients/web/apps/dashboard/CLAUDE.md.bak.*
modules/agent-core-kmp/CLAUDE.md
modules/agent-core-kmp/CLAUDE.md.bak.*
opencode.json
# END AI Agent Symlinks
10 changes: 5 additions & 5 deletions clients/agent-runtime/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions clients/agent-runtime/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1230,10 +1230,10 @@ fn save_pending_openai_login(config: &Config, pending: &PendingOpenAiLogin) -> R
let json = serde_json::to_vec_pretty(&persisted)?;
std::fs::write(&tmp, json)?;
set_owner_only_permissions(&tmp)?;
std::fs::rename(tmp, &path).or_else(|err| {
std::fs::rename(&tmp, &path).or_else(|err| {
if err.kind() == std::io::ErrorKind::AlreadyExists {
std::fs::remove_file(&path).ok();
std::fs::rename(tmp, &path)
std::fs::rename(&tmp, &path)
} else {
Err(err)
}
Expand Down

Large diffs are not rendered by default.

Loading
Loading