Skip to content
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3e02d60
feat(bay): add extraction pipeline for browser skill learning
w31r4 Feb 20, 2026
6871a8c
feat(skills): add skill docs and upgrade metadata
RC-CHN Feb 26, 2026
9075aeb
docs(shipyard-neo): clarify skill lifecycle metadata flow
RC-CHN Feb 26, 2026
e4080c6
feat(skills): add soft-delete for skill candidates and releases
RC-CHN Feb 26, 2026
05c62c1
fix(skills): allow delete endpoints without request body
RC-CHN Feb 26, 2026
9ec29a1
chore(release): bump workspace packages to 0.1.11
RC-CHN Feb 26, 2026
35717cc
fix(skills): allow deleting active releases
RC-CHN Feb 26, 2026
52ca44d
chore(release): bump workspace packages to 0.1.12
RC-CHN Feb 26, 2026
e4d6522
docs(skills): clarify payload and replay constraints
RC-CHN Feb 26, 2026
4aadf08
fix(skills): clear stale candidate promotion pointers
RC-CHN Feb 26, 2026
a500bff
fix(skills): accept json string payloads
RC-CHN Feb 26, 2026
563bb41
chore(release): bump workspace packages to 0.1.13
RC-CHN Feb 26, 2026
7bdfe49
build(ship): add runtime utility dependencies
RC-CHN Feb 26, 2026
a2f0945
chore(release): bump workspace packages to 0.1.14
RC-CHN Feb 26, 2026
93f380d
feat(api): warm up sandbox after create
RC-CHN Feb 27, 2026
bca8e4f
feat(sandbox): add warm pool claim and scheduler
RC-CHN Feb 28, 2026
24d59c0
chore(release): bump workspace packages to 0.2.0
RC-CHN Feb 28, 2026
d6d40cb
test(warm_pool): make warm pool timing tests deterministic
RC-CHN Mar 4, 2026
7f67f46
doc:add license for shipyard-neo-sdk
RC-CHN Mar 5, 2026
592b27d
feat(skills): add skill evolution API, scheduler, and SDK/MCP support
w31r4 Mar 5, 2026
7409279
test(bay): strengthen extraction pipeline unit and e2e coverage
w31r4 Mar 5, 2026
23de36d
feat(bay): harden skill evolution loop with rubric and ownership guards
w31r4 Mar 5, 2026
9f068d2
fix(api-sdk-mcp): support list pre/postconditions for evolution candi…
w31r4 Mar 5, 2026
a255127
fix(bay): backfill rubric summary for cached goals
w31r4 Mar 12, 2026
1fdf35b
Merge origin/main into feature/skill-extraction-intelligence
w31r4 Mar 12, 2026
b5e680b
fix(skills): support list conditions on candidate create paths
w31r4 Mar 12, 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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,16 @@ jobs:
capabilities: [browser]
primary_for: [browser]
idle_timeout: 1800

browser_learning:
enabled: true
run_on_startup: true
interval_seconds: 2
extraction:
dedup_enabled: true
variable_extraction_enabled: true
llm:
enabled: false
YAML

- name: Start Bay API for e2e
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/nightly-browser-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,16 @@ jobs:
capabilities: [browser]
primary_for: [browser]
idle_timeout: 1800

browser_learning:
enabled: true
run_on_startup: true
interval_seconds: 2
extraction:
dedup_enabled: true
variable_extraction_enabled: true
llm:
enabled: false
CFG

- name: Start Bay API for nightly e2e
Expand Down
Loading