File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1539,6 +1539,10 @@ export type V1InstallSkillRequest = {
15391539 * Name or OCI reference of the skill to install
15401540 */
15411541 name ?: string
1542+ /**
1543+ * ProjectRoot is the project root path for project-scoped installs
1544+ */
1545+ project_root ?: string
15421546 scope ?: SkillsScope
15431547 /**
15441548 * Version to install (empty means latest)
@@ -2775,6 +2779,14 @@ export type GetApiV1BetaSkillsData = {
27752779 * Filter by scope (user or project)
27762780 */
27772781 scope ?: 'user' | 'project'
2782+ /**
2783+ * Filter by client app
2784+ */
2785+ client ?: string
2786+ /**
2787+ * Filter by project root path
2788+ */
2789+ project_root ?: string
27782790 }
27792791 url : '/api/v1beta/skills'
27802792}
@@ -2972,6 +2984,10 @@ export type DeleteApiV1BetaSkillsByNameData = {
29722984 * Scope to uninstall from (user or project)
29732985 */
29742986 scope ?: 'user' | 'project'
2987+ /**
2988+ * Project root path for project-scoped skills
2989+ */
2990+ project_root ?: string
29752991 }
29762992 url : '/api/v1beta/skills/{name}'
29772993}
@@ -3017,6 +3033,10 @@ export type GetApiV1BetaSkillsByNameData = {
30173033 * Filter by scope (user or project)
30183034 */
30193035 scope ?: 'user' | 'project'
3036+ /**
3037+ * Project root path for project-scoped skills
3038+ */
3039+ project_root ?: string
30203040 }
30213041 url : '/api/v1beta/skills/{name}'
30223042}
Original file line number Diff line number Diff line change 17871787 "description" : " Name or OCI reference of the skill to install" ,
17881788 "type" : " string"
17891789 },
1790+ "project_root" : {
1791+ "description" : " ProjectRoot is the project root path for project-scoped installs" ,
1792+ "type" : " string"
1793+ },
17901794 "scope" : {
17911795 "$ref" : " #/components/schemas/skills.Scope"
17921796 },
34343438 "enum" : [" user" , " project" ],
34353439 "type" : " string"
34363440 }
3441+ },
3442+ {
3443+ "description" : " Filter by client app" ,
3444+ "in" : " query" ,
3445+ "name" : " client" ,
3446+ "schema" : {
3447+ "type" : " string"
3448+ }
3449+ },
3450+ {
3451+ "description" : " Filter by project root path" ,
3452+ "in" : " query" ,
3453+ "name" : " project_root" ,
3454+ "schema" : {
3455+ "type" : " string"
3456+ }
34373457 }
34383458 ],
34393459 "responses" : {
37453765 "enum" : [" user" , " project" ],
37463766 "type" : " string"
37473767 }
3768+ },
3769+ {
3770+ "description" : " Project root path for project-scoped skills" ,
3771+ "in" : " query" ,
3772+ "name" : " project_root" ,
3773+ "schema" : {
3774+ "type" : " string"
3775+ }
37483776 }
37493777 ],
37503778 "responses" : {
38123840 "enum" : [" user" , " project" ],
38133841 "type" : " string"
38143842 }
3843+ },
3844+ {
3845+ "description" : " Project root path for project-scoped skills" ,
3846+ "in" : " query" ,
3847+ "name" : " project_root" ,
3848+ "schema" : {
3849+ "type" : " string"
3850+ }
38153851 }
38163852 ],
38173853 "responses" : {
Original file line number Diff line number Diff line change 33 * This is managed by Renovate and updated automatically when new versions are released.
44 * renovate: datasource=github-releases depName=stacklok/toolhive versioning=semver
55 */
6- export const TOOLHIVE_VERSION = process . env . THV_VERSION ?? 'v0.10.2 '
6+ export const TOOLHIVE_VERSION = process . env . THV_VERSION ?? 'v0.11.0 '
You can’t perform that action at this time.
0 commit comments