Read the workspace building skills (rules) including custom overrides.
The same rules the dashboard AI follows. The guide already includes the ones that apply to API builds; use this when you need the full list including chat-only skills and disabled ones.
GET
https://app.softsolz.uk/api/v1/services/site-builder/skillsRecent Requests
Log in to see full request historyTimeStatusUser Agent
Make a request to see history.
Headers
AuthorizationstringrequiredBearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.
Response
Response Body · array of objects
kindstringSkill id.titlestringSkill title.contentstringThe rules to follow.enabledbooleanWhether it applies.auto_applybooleanApplies without being invoked.sourcestringBuilt in or written by the workspace.Request
import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.siteBuilder.getSkills();console.log(result);Credentials
Sent as a Bearer token. Stored only in your browser.
Response · 200
{ "data": [ { "kind": "string", "title": "string", "content": "string", "enabled": true, "auto_apply": true, "source": "string" } ]}