@serviceme/devtools-protocol 0.1.7 → 0.1.9

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.mts CHANGED
@@ -743,7 +743,7 @@ interface LocalPublishableAgent {
743
743
  }
744
744
 
745
745
  declare const SERVICEME_CLI_NAME = "serviceme";
746
- declare const SERVICEME_CLI_VERSION = "0.1.7";
746
+ declare const SERVICEME_CLI_VERSION = "0.1.9";
747
747
  declare const SERVICEME_CLI_CAPABILITIES: {
748
748
  readonly bridge: true;
749
749
  readonly tasks: 1;
@@ -751,6 +751,8 @@ declare const SERVICEME_CLI_CAPABILITIES: {
751
751
  readonly env: 1;
752
752
  readonly image: 1;
753
753
  readonly project: 1;
754
+ readonly skills: 1;
755
+ readonly agents: 1;
754
756
  };
755
757
 
756
758
  interface ServiceMeProjectScaffoldPruneResult {
package/dist/index.d.ts CHANGED
@@ -743,7 +743,7 @@ interface LocalPublishableAgent {
743
743
  }
744
744
 
745
745
  declare const SERVICEME_CLI_NAME = "serviceme";
746
- declare const SERVICEME_CLI_VERSION = "0.1.7";
746
+ declare const SERVICEME_CLI_VERSION = "0.1.9";
747
747
  declare const SERVICEME_CLI_CAPABILITIES: {
748
748
  readonly bridge: true;
749
749
  readonly tasks: 1;
@@ -751,6 +751,8 @@ declare const SERVICEME_CLI_CAPABILITIES: {
751
751
  readonly env: 1;
752
752
  readonly image: 1;
753
753
  readonly project: 1;
754
+ readonly skills: 1;
755
+ readonly agents: 1;
754
756
  };
755
757
 
756
758
  interface ServiceMeProjectScaffoldPruneResult {
package/dist/index.js CHANGED
@@ -698,14 +698,16 @@ function isJsonOutputResult(value) {
698
698
 
699
699
  // src/metadata.ts
700
700
  var SERVICEME_CLI_NAME = "serviceme";
701
- var SERVICEME_CLI_VERSION = "0.1.7";
701
+ var SERVICEME_CLI_VERSION = "0.1.9";
702
702
  var SERVICEME_CLI_CAPABILITIES = {
703
703
  bridge: true,
704
704
  tasks: 1,
705
705
  json: 1,
706
706
  env: 1,
707
707
  image: 1,
708
- project: 1
708
+ project: 1,
709
+ skills: 1,
710
+ agents: 1
709
711
  };
710
712
 
711
713
  // src/project.ts
package/dist/index.mjs CHANGED
@@ -597,14 +597,16 @@ function isJsonOutputResult(value) {
597
597
 
598
598
  // src/metadata.ts
599
599
  var SERVICEME_CLI_NAME = "serviceme";
600
- var SERVICEME_CLI_VERSION = "0.1.7";
600
+ var SERVICEME_CLI_VERSION = "0.1.9";
601
601
  var SERVICEME_CLI_CAPABILITIES = {
602
602
  bridge: true,
603
603
  tasks: 1,
604
604
  json: 1,
605
605
  env: 1,
606
606
  image: 1,
607
- project: 1
607
+ project: 1,
608
+ skills: 1,
609
+ agents: 1
608
610
  };
609
611
 
610
612
  // src/project.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serviceme/devtools-protocol",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Shared protocol contracts, runtime validators, and error models for SERVICEME tools.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "repository": {
@@ -39,6 +39,7 @@
39
39
  },
40
40
  "scripts": {
41
41
  "watch": "tsup src/index.ts --format cjs,esm --dts --watch",
42
+ "lint": "biome check src test",
42
43
  "build": "tsup src/index.ts --format cjs,esm --dts",
43
44
  "typecheck": "tsc --noEmit",
44
45
  "test": "pnpm run build && node --test test/**/*.test.js",