Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
abb8573
feat(sdk,agent-registry-mongo): library-mode telemetry hooks
kapaleshreyas May 28, 2026
5589a23
feat(agentos,scripts): Mongo-backed registry — dashboard + CRUD + SPA…
kapaleshreyas May 28, 2026
d782cf1
feat(engine,agentos): Bedrock env passthrough (2a) + git URL as agent…
kapaleshreyas May 28, 2026
2545e9e
test(sdk): Phase 2c — telemetry-hook + claude-sdk × substrate × sourc…
kapaleshreyas May 28, 2026
981a4f9
test: TDD backfill — agent-registry-mongo + agentos CRUD + displaySource
kapaleshreyas May 28, 2026
693419c
fix(sdk): break runtime-bwrap → sdk → runtime-bwrap cycle that broke CI
kapaleshreyas May 28, 2026
d19ada7
feat: rename publishable scope @computeragent/* → @open-gitagent/* + …
kapaleshreyas May 28, 2026
b37f558
fix(agentos-api): chat-sandbox + /run fall back to Mongo registry
kapaleshreyas May 28, 2026
67426e4
fix(agentos): registry agents are fully chat-capable + transcripts wo…
kapaleshreyas May 28, 2026
69ba86a
Phase A: cherry-pick observability backend onto PR #9
kapaleshreyas May 28, 2026
e1a154c
Phase B: UI re-skin on shadcn — base merge
kapaleshreyas May 28, 2026
bcacedc
feat(auth): cookie-session login + shadcn LoginPage; drop Caddy basic…
kapaleshreyas May 28, 2026
f17b984
feat(agentos-api): stub policy endpoints to avoid /policies 404
kapaleshreyas May 28, 2026
5a09447
ui: AgentCard + workspace layout + agent-policy-store
kapaleshreyas May 28, 2026
bafb6e8
ui: make Register agent button look active (shadcn Button + primary)
kapaleshreyas May 28, 2026
48a409b
chore: scrub customer-specific references for public release
kapaleshreyas May 31, 2026
9b773b7
Merge origin/main into chore/oss-cleanup-public
kapaleshreyas May 31, 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
49 changes: 37 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,35 @@
# Dependencies + build artifacts
node_modules/
dist/
.turbo/
*.tsbuildinfo
.pnpm-store/
.cache/
coverage/
*.log

# Editor / OS noise
.DS_Store
.env
.env.local
coverage/
.vscode/
.idea/
*.tsbuildinfo
.pnpm-store/
.cache/
*.swp
*~

# Env files — only .env.example is committed
.env
.env.*
!.env.example

# Local fixtures + scratch
fixtures/.tmp/
text
test.html
scratch/
tmp/
*.tmp

# Example agent OUTPUTS (the agents under examples/ generate these — outputs
# are run artifacts, not source)
examples/binary-outputs/
examples/decks/
examples/marketing-outputs/
Expand All @@ -20,13 +38,20 @@ examples/pdfs/
examples/security-reports/
examples/wedge16-sessions/

# Local Claude Code state (per-user settings.local.json holds live API keys
# for that developer's environment — never commit).
# Local Claude Code state (per-user settings.local.json may hold live API keys
# for that developer's environment — never commit)
.claude/

# Untracked dev tester with baked-in keys for local testing.
test.html

# Python bytecode caches from scripts/ test runners.
# Python bytecode caches from scripts/ test runners
__pycache__/
*.pyc

# Private operational handoff docs — keys, access creds, infra maps. NEVER
# commit these to a public repo.
private.md
PRIVATE.md
*.private.md

# Internal planning / handoff docs that should not be on the public repo
PLAN.md
docs.md
1,060 changes: 0 additions & 1,060 deletions PLAN.md

This file was deleted.

29 changes: 28 additions & 1 deletion agentos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,35 @@
"preview": "vite preview"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^1.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"react-dom": "^18.3.1",
"react-hook-form": "^7.76.1",
"react-resizable-panels": "^4.11.2",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/react": "^18.3.12",
Expand Down
Loading
Loading