@arbidocs/client 0.3.61 → 0.3.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2163,7 +2163,7 @@ interface components {
2163
2163
  /**
2164
2164
  * Skills Enabled
2165
2165
  * @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
2166
- * @default true
2166
+ * @default false
2167
2167
  */
2168
2168
  SKILLS_ENABLED: boolean;
2169
2169
  /**
@@ -2331,7 +2331,7 @@ interface components {
2331
2331
  * "VISION_ENABLED": false,
2332
2332
  * "PERSONAL_AGENT": false,
2333
2333
  * "MEMORY_ENABLED": false,
2334
- * "SKILLS_ENABLED": true,
2334
+ * "SKILLS_ENABLED": false,
2335
2335
  * "SKILL_CREATION": false,
2336
2336
  * "MEMORY_CREATION": false,
2337
2337
  * "REVIEW_ENABLED": false,
@@ -7458,6 +7458,11 @@ interface components {
7458
7458
  * @default false
7459
7459
  */
7460
7460
  show_templates: boolean;
7461
+ /**
7462
+ * Show Skills
7463
+ * @default false
7464
+ */
7465
+ show_skills: boolean;
7461
7466
  /**
7462
7467
  * Show Pa Mode
7463
7468
  * @default false
@@ -7517,6 +7522,8 @@ interface components {
7517
7522
  show_help_page?: boolean | null;
7518
7523
  /** Show Templates */
7519
7524
  show_templates?: boolean | null;
7525
+ /** Show Skills */
7526
+ show_skills?: boolean | null;
7520
7527
  /** Show Pa Mode */
7521
7528
  show_pa_mode?: boolean | null;
7522
7529
  /** Show Agent Sessions */
package/dist/index.d.ts CHANGED
@@ -2163,7 +2163,7 @@ interface components {
2163
2163
  /**
2164
2164
  * Skills Enabled
2165
2165
  * @description Enable the skills system: /skill (create) and /<skill-name> (invoke) commands.
2166
- * @default true
2166
+ * @default false
2167
2167
  */
2168
2168
  SKILLS_ENABLED: boolean;
2169
2169
  /**
@@ -2331,7 +2331,7 @@ interface components {
2331
2331
  * "VISION_ENABLED": false,
2332
2332
  * "PERSONAL_AGENT": false,
2333
2333
  * "MEMORY_ENABLED": false,
2334
- * "SKILLS_ENABLED": true,
2334
+ * "SKILLS_ENABLED": false,
2335
2335
  * "SKILL_CREATION": false,
2336
2336
  * "MEMORY_CREATION": false,
2337
2337
  * "REVIEW_ENABLED": false,
@@ -7458,6 +7458,11 @@ interface components {
7458
7458
  * @default false
7459
7459
  */
7460
7460
  show_templates: boolean;
7461
+ /**
7462
+ * Show Skills
7463
+ * @default false
7464
+ */
7465
+ show_skills: boolean;
7461
7466
  /**
7462
7467
  * Show Pa Mode
7463
7468
  * @default false
@@ -7517,6 +7522,8 @@ interface components {
7517
7522
  show_help_page?: boolean | null;
7518
7523
  /** Show Templates */
7519
7524
  show_templates?: boolean | null;
7525
+ /** Show Skills */
7526
+ show_skills?: boolean | null;
7520
7527
  /** Show Pa Mode */
7521
7528
  show_pa_mode?: boolean | null;
7522
7529
  /** Show Agent Sessions */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/client",
3
- "version": "0.3.61",
3
+ "version": "0.3.62",
4
4
  "description": "TypeScript SDK for the ARBI API — zero-knowledge auth, E2E encryption, and type-safe REST client",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",