Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6f6fe6b
Add inspectable local skill CLI support
anandh8x May 14, 2026
c575832
Add local skill validation and removal
anandh8x May 14, 2026
973395d
Suppress startup banner for skills CLI
anandh8x May 14, 2026
955179b
Make skills list readable for daily CLI use
anandh8x May 14, 2026
9280fd8
Stabilize skills tests under CI
anandh8x May 14, 2026
c64b5cc
Isolate user skill precedence test state
anandh8x May 14, 2026
36ae9bf
Stabilize conversation arc perf checks
anandh8x May 14, 2026
45b3fc1
Let users install skills from registries and local sources
anandh8x May 14, 2026
bca21b4
Stabilize skills install tests in the full suite
anandh8x May 14, 2026
ec295d8
Keep skills install coverage in the existing skills suite
anandh8x May 14, 2026
21065a6
Harden skill install paths before validation
anandh8x May 14, 2026
2875567
Hide bundled skills from human skills list
anandh8x May 14, 2026
7d14c3f
Include home dir in config cache key
anandh8x May 14, 2026
4a28496
Hide bundled skills from public skills commands
anandh8x May 14, 2026
bd039b0
Stop config path leaks across tests
anandh8x May 14, 2026
29b9be4
Stabilize config-sensitive tests in CI
anandh8x May 14, 2026
c98965f
Explain skill remove scope mismatches
anandh8x May 14, 2026
24e45d3
Clarify empty skills list state
anandh8x May 14, 2026
c79a1d0
fix(skills): preserve namespaced local installs
May 15, 2026
2e1bb06
Keep skills CLI independent of provider startup
anandh8x May 16, 2026
4ff411d
Preserve reviewed skill install hardening after rebase
anandh8x May 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
3 changes: 1 addition & 2 deletions src/bootstrap/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ export const onSessionSwitch = sessionSwitched.subscribe
*/
export function getSessionProjectDir(): string | null {
const ctx = getSdkContext()
return ctx?.sessionProjectDir ?? STATE.sessionProjectDir
return ctx ? ctx.sessionProjectDir : STATE.sessionProjectDir
}

export function getOriginalCwd(): string {
Expand Down Expand Up @@ -1651,4 +1651,3 @@ export function isReplBridgeActive(): boolean {
export function getReplBridgeHandle(): null {
return null
}

Loading