Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ab9499e
Add OpencodeSession integration design spec (#356)
bradbrok May 2, 2026
6a1bd7b
Refactor Codex context estimation (#357)
bradbrok May 2, 2026
075b28d
Add agent runtime column (#358)
bradbrok May 2, 2026
1dd6b1f
Fix Codex runtime provider resolution (#360)
bradbrok May 3, 2026
243e888
test(registry): regression test for first-register-with-all-kwargs pe…
claude May 3, 2026
67a203c
deps: bump claude-agent-sdk 0.1.72→0.1.73, anthropic 0.96→0.98 (#378)
olegbrok May 5, 2026
3f4e521
feat(discord): REST-polling inbound poller for per-agent Discord bots…
olegbrok May 5, 2026
c38238f
fix(broker): stop typing indicator immediately after outreach send
May 5, 2026
e7042a8
feat(admin): add force=true to /admin/update to bypass dirty tree
May 6, 2026
bb956be
fix(discord): prime-on-discover delivers fresh test message + DM owne…
May 6, 2026
c51b578
fix(admin): rebuild deps for system-python deployments + force_deps e…
Apr 25, 2026
65004ce
test(admin): cover force_deps + force interaction at endpoint level
May 6, 2026
bd81de1
Merge pull request #392 from bradbrok/fix/admin-force-deps-rebase
olegbrok May 6, 2026
b919574
feat(auth-alerts): operator alert + auth_status when Claude credentia…
olegbrok May 7, 2026
a3fa990
chore(deps): bump claude-agent-sdk floor 0.1.73 → 0.1.76 (#402)
olegbrok May 8, 2026
f6177f9
refactor(auth-detect): structured AssistantMessage.error + ResultMess…
olegbrok May 8, 2026
455ae4d
fix(discord-poller): allow peer agents/bots to reach us (#411)
olegbrok May 9, 2026
58e79f0
feat(ferry): scaffold @ferry/host-pinky with substrate v0.1 ingestion…
olegbrok May 10, 2026
94573a8
feat(ferry): outbound mesh_remote_send tool — daemon-side publisher (…
olegbrok May 10, 2026
3bc5838
feat(ferry): mesh persistence + federation peer registry (#419) (#422)
olegbrok May 10, 2026
79adb4e
feat(hooks): effort.level verification hook (#429)
olegbrok May 11, 2026
160a7d3
fix(scheduler): stop infinite resurrection loop for connected codex a…
olegbrok May 11, 2026
77c36cd
feat(boot): main-agent-only boot + auto-deps drift detection (#432)
olegbrok May 11, 2026
30f2990
fix(scheduler): skip resurrection eval for idle-sleeping agents (#446)
olegbrok May 11, 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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
"httpx>=0.28",
"fastapi>=0.135",
"uvicorn>=0.44",
"claude-agent-sdk>=0.1.72",
"claude-agent-sdk>=0.1.77",
"Pillow>=10.0",
# Federation crypto (sealed_box_v1): X25519, Ed25519, HKDF, XChaCha20-Poly1305.
"cryptography>=41.0",
Expand All @@ -54,7 +54,7 @@ calendar = [
"cryptography>=41.0",
]
web = ["camoufox>=0.4", "markdownify>=1.0", "beautifulsoup4>=4.12"]
voice = ["twilio>=9.0", "anthropic>=0.96"]
voice = ["twilio>=9.0", "anthropic>=0.98"]
local-embeddings = ["sentence-transformers>=2.0"]
all = [
"pinky-ai[telegram,discord,slack,google,calendar,voice]",
Expand Down
659 changes: 659 additions & 0 deletions specs/opencode-session-integration.md

Large diffs are not rendered by default.

740 changes: 701 additions & 39 deletions src/pinky_daemon/agent_registry.py

Large diffs are not rendered by default.

Loading
Loading