Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
6bdea9d
Add backend service for Claude agent
claude Jan 7, 2026
94a25c2
Add mock mode and test suite for backend
claude Jan 7, 2026
12e5d42
Fix Railway deployment configuration
claude Jan 7, 2026
1be0e04
Merge pull request #1 from ki-cooley/claude/obsidian-agent-backend-2b7yF
ki-cooley Jan 7, 2026
9f55a50
Add HTTP health check endpoint
claude Jan 7, 2026
6058004
Fix Docker build context for Railway
claude Jan 7, 2026
7d5feae
Merge branch 'main' of https://github.com/ki-cooley/claudsidian
ki-cooley Jan 7, 2026
14f3d3a
Merge branch 'claude/obsidian-agent-backend-2b7yF' of https://github.…
ki-cooley Jan 7, 2026
c33425d
Add vault_edit, vault_grep, vault_glob, vault_rename tools
ki-cooley Jan 10, 2026
f91493e
Add CLAUDE.md and custom skills support
ki-cooley Jan 10, 2026
65d1179
Merge branch 'claude/obsidian-agent-backend-2b7yF'
ki-cooley Jan 10, 2026
e9f7762
Default to Claude Opus 4.5 model
ki-cooley Jan 12, 2026
4f7ad1d
Add dynamic model selection from frontend settings
ki-cooley Jan 12, 2026
7663f2e
Fix model IDs to use correct release dates
ki-cooley Jan 12, 2026
ea2d257
Improve tool result UX with collapsed lists and edit batching
ki-cooley Jan 15, 2026
4ed1cbc
Add web search capability and mobile UX improvements
ki-cooley Jan 16, 2026
0e622ee
Fix web search tool - add required name field
ki-cooley Jan 16, 2026
91ac39a
Add MCP SSE client support for external tool servers
ki-cooley Feb 10, 2026
4b10f1c
Migrate backend to Claude Agent SDK with Opus 4.6 default
ki-cooley Feb 11, 2026
9104757
Add git to Docker image, improve error logging for Agent SDK
ki-cooley Feb 11, 2026
cb127a8
Add CLI diagnostic on startup to debug Railway exit code 1
ki-cooley Feb 11, 2026
823317e
Fix CLI debugging: add stderr capture, create HOME dir, remove startu…
ki-cooley Feb 11, 2026
87e41a4
Fix: run container as non-root user for Agent SDK compatibility
ki-cooley Feb 11, 2026
008a6ef
Strip MCP prefix from tool names for cleaner plugin display
ki-cooley Feb 11, 2026
1392389
Emit synthetic tool_end for external MCP tools
ki-cooley Feb 11, 2026
deaa2f3
Add Cursor-style Activity UI with accordion, diff blocks, and undo
ki-cooley Feb 11, 2026
0eb3c94
Fix WebSocket disconnect loop: use app-level keepalive instead of pro…
ki-cooley Feb 11, 2026
1517455
Add cookbook citation instructions to system prompt
ki-cooley Feb 11, 2026
24e26f1
Fix undo button and add clickable file links in edit diffs
ki-cooley Feb 11, 2026
1ea8cb1
Add external resource dir setting, fix activity dedup, remove mobile …
ki-cooley Feb 12, 2026
28ca276
Update system prompt to enforce PDF wikilink citation format
ki-cooley Feb 12, 2026
bbcea40
Fix stop generation button: abort-aware promise + disconnect cleanup
ki-cooley Feb 12, 2026
d052277
Add per-message timeout to agent loop to prevent infinite hangs
ki-cooley Feb 13, 2026
78b2319
Replace per-message timeout with heartbeat-based inactivity detection…
ki-cooley Feb 13, 2026
44fd681
Fix tool_start to include full input, clean up pending tools on cancel
ki-cooley Feb 13, 2026
7266bd2
Fix activity timer, enable thinking, increase timeouts
ki-cooley Feb 13, 2026
09474e8
Fix exit code 1 crash: remove thinking option, suppress post-completi…
ki-cooley Feb 13, 2026
346f351
Enable adaptive thinking for Opus 4.6
ki-cooley Feb 13, 2026
0c84637
Remove thinking option to isolate exit code 1 issue
ki-cooley Feb 13, 2026
416cf34
Re-enable adaptive thinking for Opus 4.6
ki-cooley Feb 13, 2026
e39add3
Increase maxTurns to 50, add truncation notice, reduce repetition
ki-cooley Feb 13, 2026
2dc5248
Add interspersed activity layout and rendered markdown preview
ki-cooley Feb 13, 2026
86af615
Remove wiki-link brackets from activity UI labels
ki-cooley Feb 13, 2026
366feb9
Fix image inputs and @ file mentions for backend provider
ki-cooley Feb 17, 2026
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
8 changes: 8 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"Bash(node:*)",
"Bash"
]
}
}
Loading