Interface SkillService
-
- All Implemented Interfaces:
public interface SkillServiceSearch and read legal AI skills for agents
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSkillService.WithRawResponseA view of SkillService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract SkillService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract SkillService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
custom
abstract CustomService custom()
Search and read legal AI skills for agents
-
create
SkillCreateResponse create(SkillCreateParams params)
Create an org-scoped custom skill. The skill will be searchable via /skills/resolve alongside curated skills.
-
create
abstract SkillCreateResponse create(SkillCreateParams params, RequestOptions requestOptions)
-
update
SkillUpdateResponse update(String pathSlug)
Update an org-scoped custom skill by slug. Only provided fields are updated. Version is auto-incremented.
-
update
SkillUpdateResponse update(String pathSlug, SkillUpdateParams params, RequestOptions requestOptions)
-
update
SkillUpdateResponse update(String pathSlug, SkillUpdateParams params)
-
update
abstract SkillUpdateResponse update(SkillUpdateParams params, RequestOptions requestOptions)
-
update
SkillUpdateResponse update(SkillUpdateParams params)
-
update
SkillUpdateResponse update(String pathSlug, RequestOptions requestOptions)
-
delete
SkillDeleteResponse delete(String slug)
Soft-delete an org-scoped custom skill by slug. The skill will no longer appear in search results.
-
delete
SkillDeleteResponse delete(String slug, SkillDeleteParams params, RequestOptions requestOptions)
-
delete
SkillDeleteResponse delete(String slug, SkillDeleteParams params)
-
delete
abstract SkillDeleteResponse delete(SkillDeleteParams params, RequestOptions requestOptions)
-
delete
SkillDeleteResponse delete(SkillDeleteParams params)
-
delete
SkillDeleteResponse delete(String slug, RequestOptions requestOptions)
-
read
SkillReadResponse read(String slug)
Read the full content of a legal skill by its slug. Returns markdown content, tags, and metadata.
-
read
SkillReadResponse read(String slug, SkillReadParams params, RequestOptions requestOptions)
-
read
SkillReadResponse read(String slug, SkillReadParams params)
-
read
abstract SkillReadResponse read(SkillReadParams params, RequestOptions requestOptions)
-
read
SkillReadResponse read(SkillReadParams params)
-
read
SkillReadResponse read(String slug, RequestOptions requestOptions)
-
resolve
SkillResolveResponse resolve(SkillResolveParams params)
Search the Legal Skills Store using hybrid search (text + tag + semantic). Returns ranked results with relevance scores.
-
resolve
abstract SkillResolveResponse resolve(SkillResolveParams params, RequestOptions requestOptions)
-
-
-
-