SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
site builder

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.

GEThttps://app.softsolz.uk/api/v1/services/site-builder/skills

Recent Requests

Log in to see full request history
TimeStatusUser Agent
Make a request to see history.

Headers

Authorizationstringrequired

Bearer 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"
}
]
}