Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9e5aeea
feat: setup openai plugin, document search mockups, and fix E2E test …
BigSimmo Jul 2, 2026
b3dddcd
Merge remote-tracking branch 'origin/main' into codex/openai-plugin-s…
Copilot Jul 2, 2026
e5ad93f
Merge branch 'main' into codex/openai-plugin-setup
BigSimmo Jul 2, 2026
f26bebf
feat: add document-search mockup index and live document handoff route
BigSimmo Jul 2, 2026
b11622c
perf: lazy-load dashboard workspaces, memoize table parsing, drop unu…
BigSimmo Jul 2, 2026
d8e2e54
Merge remote-tracking branch 'origin/codex/openai-plugin-setup' into …
BigSimmo Jul 2, 2026
99f9546
Merge remote-tracking branch 'origin/main' into codex/openai-plugin-s…
BigSimmo Jul 2, 2026
30255c5
feat(ui): optimize layout rendering sync and integrate document searc…
BigSimmo Jul 2, 2026
f3cb0f1
feat(ui): refine form search results page and stabilize smoke tests
BigSimmo Jul 2, 2026
541d8cf
Merge remote-tracking branch 'origin/main' into codex/openai-plugin-s…
Copilot Jul 2, 2026
25c70d3
fix: avoid setState in forms search effect
Copilot Jul 2, 2026
7c6a7d0
Changes before error encountered
Copilot Jul 2, 2026
64f73c4
Merge origin/main to resolve PR conflicts
Copilot Jul 2, 2026
c6d2e2c
Merge branch 'main' into codex/openai-plugin-setup
BigSimmo Jul 2, 2026
d412fd9
Merge branch 'main' into codex/openai-plugin-setup
BigSimmo Jul 2, 2026
c2872d7
style: prettier-format 20 drifted files; align logRagQuery to RagQuer…
BigSimmo Jul 2, 2026
863e1c6
fix: address evidence and label review feedback
BigSimmo Jul 2, 2026
1e4e81d
fix(labels): exclude hidden labels from search coverage
BigSimmo Jul 2, 2026
5d0323a
fix(lint): reset forms draft query during render instead of in an effect
BigSimmo Jul 2, 2026
c50c79c
Merge origin/main to resolve latest PR conflicts
Copilot Jul 2, 2026
19acb38
fix: correct source debt acceptance status
Copilot Jul 2, 2026
4bd8169
Merge branch 'main' into codex/openai-plugin-setup
BigSimmo Jul 2, 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
20 changes: 20 additions & 0 deletions .agents/plugins/api_marketplace.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
{
"name": "clinical-kb-api-local",
"interface": {
"displayName": "Clinical KB local"
},
"plugins": [
{
"name": "clinical-kb",
"source": {
"source": "local",
"path": "./plugins/clinical-kb"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Developer Tools"
}
]
}
20 changes: 20 additions & 0 deletions .agents/plugins/marketplace.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
{
"name": "clinical-kb-local",
"interface": {
"displayName": "Clinical KB local"
},
"plugins": [
{
"name": "clinical-kb",
"source": {
"source": "local",
"path": "./plugins/clinical-kb"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Developer Tools"
}
]
}
5 changes: 4 additions & 1 deletion .gitignore
Original file line numberDiff line numberDiff line change
Expand Up@@ -19,7 +19,10 @@
/.playwright-cli/
/playwright/.auth/
/.codex/
/.agents/
/.agents/*
!/.agents/plugins/
!/.agents/plugins/marketplace.json
!/.agents/plugins/api_marketplace.json
/skills-lock.json

# next.js
Expand Down
Loading
Loading