@keystrokehq/owl_protocol 0.1.0

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.
Files changed (58) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/deploy-collection.cjs +34 -0
  7. package/dist/actions/deploy-collection.cjs.map +1 -0
  8. package/dist/actions/deploy-collection.d.cts +9 -0
  9. package/dist/actions/deploy-collection.d.cts.map +1 -0
  10. package/dist/actions/deploy-collection.d.mts +9 -0
  11. package/dist/actions/deploy-collection.d.mts.map +1 -0
  12. package/dist/actions/deploy-collection.mjs +31 -0
  13. package/dist/actions/deploy-collection.mjs.map +1 -0
  14. package/dist/actions/get-project-details.cjs +23 -0
  15. package/dist/actions/get-project-details.cjs.map +1 -0
  16. package/dist/actions/get-project-details.d.cts +9 -0
  17. package/dist/actions/get-project-details.d.cts.map +1 -0
  18. package/dist/actions/get-project-details.d.mts +9 -0
  19. package/dist/actions/get-project-details.d.mts.map +1 -0
  20. package/dist/actions/get-project-details.mjs +20 -0
  21. package/dist/actions/get-project-details.mjs.map +1 -0
  22. package/dist/actions/index.cjs +7 -0
  23. package/dist/actions/index.d.cts +4 -0
  24. package/dist/actions/index.d.mts +4 -0
  25. package/dist/actions/index.mjs +4 -0
  26. package/dist/actions/list-projects.cjs +23 -0
  27. package/dist/actions/list-projects.cjs.map +1 -0
  28. package/dist/actions/list-projects.d.cts +9 -0
  29. package/dist/actions/list-projects.d.cts.map +1 -0
  30. package/dist/actions/list-projects.d.mts +9 -0
  31. package/dist/actions/list-projects.d.mts.map +1 -0
  32. package/dist/actions/list-projects.mjs +22 -0
  33. package/dist/actions/list-projects.mjs.map +1 -0
  34. package/dist/app.cjs +9 -0
  35. package/dist/app.cjs.map +1 -0
  36. package/dist/app.d.cts +5 -0
  37. package/dist/app.d.cts.map +1 -0
  38. package/dist/app.d.mts +5 -0
  39. package/dist/app.d.mts.map +1 -0
  40. package/dist/app.mjs +10 -0
  41. package/dist/app.mjs.map +1 -0
  42. package/dist/catalog.cjs +15 -0
  43. package/dist/catalog.cjs.map +1 -0
  44. package/dist/catalog.d.cts +14 -0
  45. package/dist/catalog.d.cts.map +1 -0
  46. package/dist/catalog.d.mts +14 -0
  47. package/dist/catalog.d.mts.map +1 -0
  48. package/dist/catalog.mjs +15 -0
  49. package/dist/catalog.mjs.map +1 -0
  50. package/dist/execute.cjs +18 -0
  51. package/dist/execute.cjs.map +1 -0
  52. package/dist/execute.mjs +18 -0
  53. package/dist/execute.mjs.map +1 -0
  54. package/dist/index.cjs +12 -0
  55. package/dist/index.d.cts +6 -0
  56. package/dist/index.d.mts +6 -0
  57. package/dist/index.mjs +7 -0
  58. package/package.json +49 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @keystrokehq/owl_protocol
2
+
3
+ Keystroke-managed integration.
4
+
5
+ **App:** `owl_protocol`
6
+ **Version:** `20260615_00`
7
+ **Actions:** 3
8
+
9
+ ```ts
10
+ import { defineAgent } from "@keystrokehq/keystroke/agent";
11
+ import { owlProtocolDeployCollection } from "@keystrokehq/owl_protocol/actions";
12
+
13
+ export default defineAgent({
14
+ key: "owl_protocol-agent",
15
+ tools: [owlProtocolDeployCollection],
16
+ });
17
+ ```
@@ -0,0 +1,21 @@
1
+ const require_app = require("./app.cjs");
2
+ const require_execute = require("./execute.cjs");
3
+ require("zod");
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return require_app.owlProtocol.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await require_execute.executeOwlProtocolTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ exports.action = action;
20
+
21
+ //# sourceMappingURL=action.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.cjs","names":["owlProtocol","executeOwlProtocolTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { owlProtocol } from \"./app\";\nimport { executeOwlProtocolTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return owlProtocol.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeOwlProtocolTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
@@ -0,0 +1,21 @@
1
+ import { owlProtocol } from "./app.mjs";
2
+ import { executeOwlProtocolTool } from "./execute.mjs";
3
+ import "zod";
4
+ //#region src/action.ts
5
+ /** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
6
+ function action(tool, def) {
7
+ return owlProtocol.action({
8
+ slug: def.slug,
9
+ name: def.name,
10
+ description: def.description,
11
+ input: def.input,
12
+ output: def.output,
13
+ async run(input) {
14
+ return def.output.parse(await executeOwlProtocolTool(tool, input));
15
+ }
16
+ });
17
+ }
18
+ //#endregion
19
+ export { action };
20
+
21
+ //# sourceMappingURL=action.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { owlProtocol } from \"./app\";\nimport { executeOwlProtocolTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return owlProtocol.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeOwlProtocolTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
@@ -0,0 +1,34 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/deploy-collection.ts
4
+ const OwlProtocolDeployCollectionInput = zod.z.object({
5
+ args: zod.z.array(zod.z.union([
6
+ zod.z.string(),
7
+ zod.z.number().int(),
8
+ zod.z.boolean(),
9
+ zod.z.number()
10
+ ])).describe("Constructor arguments for the contract.").optional(),
11
+ name: zod.z.string().describe("Display name for the ERC721 collection."),
12
+ symbol: zod.z.string().describe("Symbol for the collection (token ticker)."),
13
+ chainId: zod.z.number().int().describe("Blockchain network chain ID."),
14
+ overrides: zod.z.object({}).describe("Transaction parameters to override (e.g., gasLimit).").optional(),
15
+ projectId: zod.z.string().describe("Project identifier."),
16
+ contractName: zod.z.string().describe("Name of the contract to deploy.")
17
+ });
18
+ const OwlProtocolDeployCollectionOutput = zod.z.object({
19
+ status: zod.z.string().describe("Status message of the deployment."),
20
+ address: zod.z.string().describe("Deployed contract address."),
21
+ chainId: zod.z.number().int().describe("Blockchain network chain ID."),
22
+ transactionHash: zod.z.string().describe("Transaction hash of the deployment.")
23
+ });
24
+ const owlProtocolDeployCollection = require_action.action("OWL_PROTOCOL_DEPLOY_COLLECTION", {
25
+ slug: "owl_protocol-deploy-collection",
26
+ name: "Deploy ERC721 Collection",
27
+ description: "Tool to deploy a new ERC721 collection contract. Use after creating a project to programmatically deploy the collection on a specified blockchain.",
28
+ input: OwlProtocolDeployCollectionInput,
29
+ output: OwlProtocolDeployCollectionOutput
30
+ });
31
+ //#endregion
32
+ exports.owlProtocolDeployCollection = owlProtocolDeployCollection;
33
+
34
+ //# sourceMappingURL=deploy-collection.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deploy-collection.cjs","names":["z","action"],"sources":["../../src/actions/deploy-collection.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolDeployCollectionInput: z.ZodTypeAny = z.object({\n args: z.array(z.union([z.string(), z.number().int(), z.boolean(), z.number()])).describe(\"Constructor arguments for the contract.\").optional(),\n name: z.string().describe(\"Display name for the ERC721 collection.\"),\n symbol: z.string().describe(\"Symbol for the collection (token ticker).\"),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\"),\n overrides: z.object({}).describe(\"Transaction parameters to override (e.g., gasLimit).\").optional(),\n projectId: z.string().describe(\"Project identifier.\"),\n contractName: z.string().describe(\"Name of the contract to deploy.\"),\n});\nexport const OwlProtocolDeployCollectionOutput: z.ZodTypeAny = z.object({\n status: z.string().describe(\"Status message of the deployment.\"),\n address: z.string().describe(\"Deployed contract address.\"),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\"),\n transactionHash: z.string().describe(\"Transaction hash of the deployment.\"),\n});\n\nexport const owlProtocolDeployCollection = action(\"OWL_PROTOCOL_DEPLOY_COLLECTION\", {\n slug: \"owl_protocol-deploy-collection\",\n name: \"Deploy ERC721 Collection\",\n description: \"Tool to deploy a new ERC721 collection contract. Use after creating a project to programmatically deploy the collection on a specified blockchain.\",\n input: OwlProtocolDeployCollectionInput,\n output: OwlProtocolDeployCollectionOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAiDA,IAAAA,EAAE,OAAO;CACrE,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;EAAGA,IAAAA,EAAE,QAAQ;EAAGA,IAAAA,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;CAC7I,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACnE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;CACvE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;CACjE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;CACpD,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;AACrE,CAAC;AACD,MAAa,oCAAkDA,IAAAA,EAAE,OAAO;CACtE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAC/D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACzD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;CACjE,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;AAC5E,CAAC;AAED,MAAa,8BAA8BC,eAAAA,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/deploy-collection.d.ts
4
+ declare const OwlProtocolDeployCollectionInput: z.ZodTypeAny;
5
+ declare const OwlProtocolDeployCollectionOutput: z.ZodTypeAny;
6
+ declare const owlProtocolDeployCollection: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { owlProtocolDeployCollection };
9
+ //# sourceMappingURL=deploy-collection.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deploy-collection.d.cts","names":[],"sources":["../../src/actions/deploy-collection.ts"],"mappings":";;;cAIa,gCAAA,EAAkC,CAAA,CAAE,UAQ/C;AAAA,cACW,iCAAA,EAAmC,CAAA,CAAE,UAKhD;AAAA,cAEW,2BAAA,gCAA2B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/deploy-collection.d.ts
4
+ declare const OwlProtocolDeployCollectionInput: z.ZodTypeAny;
5
+ declare const OwlProtocolDeployCollectionOutput: z.ZodTypeAny;
6
+ declare const owlProtocolDeployCollection: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { owlProtocolDeployCollection };
9
+ //# sourceMappingURL=deploy-collection.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deploy-collection.d.mts","names":[],"sources":["../../src/actions/deploy-collection.ts"],"mappings":";;;cAIa,gCAAA,EAAkC,CAAA,CAAE,UAQ/C;AAAA,cACW,iCAAA,EAAmC,CAAA,CAAE,UAKhD;AAAA,cAEW,2BAAA,gCAA2B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,31 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const owlProtocolDeployCollection = action("OWL_PROTOCOL_DEPLOY_COLLECTION", {
4
+ slug: "owl_protocol-deploy-collection",
5
+ name: "Deploy ERC721 Collection",
6
+ description: "Tool to deploy a new ERC721 collection contract. Use after creating a project to programmatically deploy the collection on a specified blockchain.",
7
+ input: z.object({
8
+ args: z.array(z.union([
9
+ z.string(),
10
+ z.number().int(),
11
+ z.boolean(),
12
+ z.number()
13
+ ])).describe("Constructor arguments for the contract.").optional(),
14
+ name: z.string().describe("Display name for the ERC721 collection."),
15
+ symbol: z.string().describe("Symbol for the collection (token ticker)."),
16
+ chainId: z.number().int().describe("Blockchain network chain ID."),
17
+ overrides: z.object({}).describe("Transaction parameters to override (e.g., gasLimit).").optional(),
18
+ projectId: z.string().describe("Project identifier."),
19
+ contractName: z.string().describe("Name of the contract to deploy.")
20
+ }),
21
+ output: z.object({
22
+ status: z.string().describe("Status message of the deployment."),
23
+ address: z.string().describe("Deployed contract address."),
24
+ chainId: z.number().int().describe("Blockchain network chain ID."),
25
+ transactionHash: z.string().describe("Transaction hash of the deployment.")
26
+ })
27
+ });
28
+ //#endregion
29
+ export { owlProtocolDeployCollection };
30
+
31
+ //# sourceMappingURL=deploy-collection.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deploy-collection.mjs","names":[],"sources":["../../src/actions/deploy-collection.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolDeployCollectionInput: z.ZodTypeAny = z.object({\n args: z.array(z.union([z.string(), z.number().int(), z.boolean(), z.number()])).describe(\"Constructor arguments for the contract.\").optional(),\n name: z.string().describe(\"Display name for the ERC721 collection.\"),\n symbol: z.string().describe(\"Symbol for the collection (token ticker).\"),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\"),\n overrides: z.object({}).describe(\"Transaction parameters to override (e.g., gasLimit).\").optional(),\n projectId: z.string().describe(\"Project identifier.\"),\n contractName: z.string().describe(\"Name of the contract to deploy.\"),\n});\nexport const OwlProtocolDeployCollectionOutput: z.ZodTypeAny = z.object({\n status: z.string().describe(\"Status message of the deployment.\"),\n address: z.string().describe(\"Deployed contract address.\"),\n chainId: z.number().int().describe(\"Blockchain network chain ID.\"),\n transactionHash: z.string().describe(\"Transaction hash of the deployment.\"),\n});\n\nexport const owlProtocolDeployCollection = action(\"OWL_PROTOCOL_DEPLOY_COLLECTION\", {\n slug: \"owl_protocol-deploy-collection\",\n name: \"Deploy ERC721 Collection\",\n description: \"Tool to deploy a new ERC721 collection contract. Use after creating a project to programmatically deploy the collection on a specified blockchain.\",\n input: OwlProtocolDeployCollectionInput,\n output: OwlProtocolDeployCollectionOutput,\n});\n"],"mappings":";;AAoBA,MAAa,8BAA8B,OAAO,kCAAkC;CAClF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OApB4D,EAAE,OAAO;EACrE,MAAM,EAAE,MAAM,EAAE,MAAM;GAAC,EAAE,OAAO;GAAG,EAAE,OAAO,CAAC,CAAC,IAAI;GAAG,EAAE,QAAQ;GAAG,EAAE,OAAO;EAAC,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;EAC7I,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;EACnE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C;EACvE,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;EACjE,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;EAClG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB;EACpD,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC;CACrE,CAYS;CACP,QAZ6D,EAAE,OAAO;EACtE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;EAC/D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;EACzD,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B;EACjE,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC;CAC5E,CAOU;AACV,CAAC"}
@@ -0,0 +1,23 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/get-project-details.ts
4
+ const OwlProtocolGetProjectDetailsInput = zod.z.object({}).describe("Request model for retrieving project details. No parameters are required; the project is identified via the API key header.");
5
+ const OwlProtocolGetProjectDetailsOutput = zod.z.object({
6
+ name: zod.z.string().describe("Name of the project."),
7
+ owner: zod.z.string().describe("Owner of the project."),
8
+ createdAt: zod.z.string().describe("ISO-8601 timestamp when the project was created."),
9
+ projectId: zod.z.string().describe("Unique identifier of the project."),
10
+ updatedAt: zod.z.string().describe("ISO-8601 timestamp when the project was last updated."),
11
+ description: zod.z.string().describe("Optional description of the project.").nullable().optional()
12
+ }).describe("Response model for GetProjectDetails action.");
13
+ const owlProtocolGetProjectDetails = require_action.action("OWL_PROTOCOL_GET_PROJECT_DETAILS", {
14
+ slug: "owl_protocol-get-project-details",
15
+ name: "Get Project Details",
16
+ description: "Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.",
17
+ input: OwlProtocolGetProjectDetailsInput,
18
+ output: OwlProtocolGetProjectDetailsOutput
19
+ });
20
+ //#endregion
21
+ exports.owlProtocolGetProjectDetails = owlProtocolGetProjectDetails;
22
+
23
+ //# sourceMappingURL=get-project-details.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-project-details.cjs","names":["z","action"],"sources":["../../src/actions/get-project-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolGetProjectDetailsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for retrieving project details. No parameters are required; the project is identified via the API key header.\");\nexport const OwlProtocolGetProjectDetailsOutput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the project.\"),\n owner: z.string().describe(\"Owner of the project.\"),\n createdAt: z.string().describe(\"ISO-8601 timestamp when the project was created.\"),\n projectId: z.string().describe(\"Unique identifier of the project.\"),\n updatedAt: z.string().describe(\"ISO-8601 timestamp when the project was last updated.\"),\n description: z.string().describe(\"Optional description of the project.\").nullable().optional(),\n}).describe(\"Response model for GetProjectDetails action.\");\n\nexport const owlProtocolGetProjectDetails = action(\"OWL_PROTOCOL_GET_PROJECT_DETAILS\", {\n slug: \"owl_protocol-get-project-details\",\n name: \"Get Project Details\",\n description: \"Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.\",\n input: OwlProtocolGetProjectDetailsInput,\n output: OwlProtocolGetProjectDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6HAA6H;AAClN,MAAa,qCAAmDA,IAAAA,EAAE,OAAO;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;CAClD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;CACjF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;CAClE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;CACtF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,+BAA+BC,eAAAA,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-project-details.d.ts
4
+ declare const OwlProtocolGetProjectDetailsInput: z.ZodTypeAny;
5
+ declare const OwlProtocolGetProjectDetailsOutput: z.ZodTypeAny;
6
+ declare const owlProtocolGetProjectDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { owlProtocolGetProjectDetails };
9
+ //# sourceMappingURL=get-project-details.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-project-details.d.cts","names":[],"sources":["../../src/actions/get-project-details.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAAiK;AAAA,cACtM,kCAAA,EAAoC,CAAA,CAAE,UAOQ;AAAA,cAE9C,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-project-details.d.ts
4
+ declare const OwlProtocolGetProjectDetailsInput: z.ZodTypeAny;
5
+ declare const OwlProtocolGetProjectDetailsOutput: z.ZodTypeAny;
6
+ declare const owlProtocolGetProjectDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { owlProtocolGetProjectDetails };
9
+ //# sourceMappingURL=get-project-details.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-project-details.d.mts","names":[],"sources":["../../src/actions/get-project-details.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAAiK;AAAA,cACtM,kCAAA,EAAoC,CAAA,CAAE,UAOQ;AAAA,cAE9C,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,20 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const owlProtocolGetProjectDetails = action("OWL_PROTOCOL_GET_PROJECT_DETAILS", {
4
+ slug: "owl_protocol-get-project-details",
5
+ name: "Get Project Details",
6
+ description: "Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.",
7
+ input: z.object({}).describe("Request model for retrieving project details. No parameters are required; the project is identified via the API key header."),
8
+ output: z.object({
9
+ name: z.string().describe("Name of the project."),
10
+ owner: z.string().describe("Owner of the project."),
11
+ createdAt: z.string().describe("ISO-8601 timestamp when the project was created."),
12
+ projectId: z.string().describe("Unique identifier of the project."),
13
+ updatedAt: z.string().describe("ISO-8601 timestamp when the project was last updated."),
14
+ description: z.string().describe("Optional description of the project.").nullable().optional()
15
+ }).describe("Response model for GetProjectDetails action.")
16
+ });
17
+ //#endregion
18
+ export { owlProtocolGetProjectDetails };
19
+
20
+ //# sourceMappingURL=get-project-details.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-project-details.mjs","names":[],"sources":["../../src/actions/get-project-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolGetProjectDetailsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for retrieving project details. No parameters are required; the project is identified via the API key header.\");\nexport const OwlProtocolGetProjectDetailsOutput: z.ZodTypeAny = z.object({\n name: z.string().describe(\"Name of the project.\"),\n owner: z.string().describe(\"Owner of the project.\"),\n createdAt: z.string().describe(\"ISO-8601 timestamp when the project was created.\"),\n projectId: z.string().describe(\"Unique identifier of the project.\"),\n updatedAt: z.string().describe(\"ISO-8601 timestamp when the project was last updated.\"),\n description: z.string().describe(\"Optional description of the project.\").nullable().optional(),\n}).describe(\"Response model for GetProjectDetails action.\");\n\nexport const owlProtocolGetProjectDetails = action(\"OWL_PROTOCOL_GET_PROJECT_DETAILS\", {\n slug: \"owl_protocol-get-project-details\",\n name: \"Get Project Details\",\n description: \"Tool to retrieve details of a specific project. Use when you need metadata about a project after authenticating with your API key.\",\n input: OwlProtocolGetProjectDetailsInput,\n output: OwlProtocolGetProjectDetailsOutput,\n});\n"],"mappings":";;AAcA,MAAa,+BAA+B,OAAO,oCAAoC;CACrF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd6D,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6HAc5E;CACP,QAd8D,EAAE,OAAO;EACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;EAChD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB;EAClD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD;EACjF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC;EAClE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;EACtF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
@@ -0,0 +1,7 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_deploy_collection = require("./deploy-collection.cjs");
3
+ const require_get_project_details = require("./get-project-details.cjs");
4
+ const require_list_projects = require("./list-projects.cjs");
5
+ exports.owlProtocolDeployCollection = require_deploy_collection.owlProtocolDeployCollection;
6
+ exports.owlProtocolGetProjectDetails = require_get_project_details.owlProtocolGetProjectDetails;
7
+ exports.owlProtocolListProjects = require_list_projects.owlProtocolListProjects;
@@ -0,0 +1,4 @@
1
+ import { owlProtocolDeployCollection } from "./deploy-collection.cjs";
2
+ import { owlProtocolGetProjectDetails } from "./get-project-details.cjs";
3
+ import { owlProtocolListProjects } from "./list-projects.cjs";
4
+ export { owlProtocolDeployCollection, owlProtocolGetProjectDetails, owlProtocolListProjects };
@@ -0,0 +1,4 @@
1
+ import { owlProtocolDeployCollection } from "./deploy-collection.mjs";
2
+ import { owlProtocolGetProjectDetails } from "./get-project-details.mjs";
3
+ import { owlProtocolListProjects } from "./list-projects.mjs";
4
+ export { owlProtocolDeployCollection, owlProtocolGetProjectDetails, owlProtocolListProjects };
@@ -0,0 +1,4 @@
1
+ import { owlProtocolDeployCollection } from "./deploy-collection.mjs";
2
+ import { owlProtocolGetProjectDetails } from "./get-project-details.mjs";
3
+ import { owlProtocolListProjects } from "./list-projects.mjs";
4
+ export { owlProtocolDeployCollection, owlProtocolGetProjectDetails, owlProtocolListProjects };
@@ -0,0 +1,23 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-projects.ts
4
+ const OwlProtocolListProjectsInput = zod.z.object({}).describe("Request model for listing all projects.");
5
+ const OwlProtocolListProjects_ProjectSchema = zod.z.object({
6
+ id: zod.z.string().describe("Unique identifier for the project."),
7
+ name: zod.z.string().describe("Name of the project."),
8
+ createdAt: zod.z.string().describe("Timestamp when the project was created."),
9
+ updatedAt: zod.z.string().describe("Timestamp when the project was last updated."),
10
+ description: zod.z.string().describe("Description of the project.").nullable().optional()
11
+ }).passthrough().describe("Model representing a single project.");
12
+ const OwlProtocolListProjectsOutput = zod.z.object({ projects: zod.z.array(OwlProtocolListProjects_ProjectSchema).describe("List of project objects.") }).describe("Response model for listing all projects.");
13
+ const owlProtocolListProjects = require_action.action("OWL_PROTOCOL_LIST_PROJECTS", {
14
+ slug: "owl_protocol-list-projects",
15
+ name: "List Projects",
16
+ description: "Tool to list all projects. Use when you need to retrieve all projects accessible by the authenticated user.",
17
+ input: OwlProtocolListProjectsInput,
18
+ output: OwlProtocolListProjectsOutput
19
+ });
20
+ //#endregion
21
+ exports.owlProtocolListProjects = owlProtocolListProjects;
22
+
23
+ //# sourceMappingURL=list-projects.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.cjs","names":["z","action"],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolListProjectsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing all projects.\");\nconst OwlProtocolListProjects_ProjectSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the project.\"),\n name: z.string().describe(\"Name of the project.\"),\n createdAt: z.string().describe(\"Timestamp when the project was created.\"),\n updatedAt: z.string().describe(\"Timestamp when the project was last updated.\"),\n description: z.string().describe(\"Description of the project.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single project.\");\nexport const OwlProtocolListProjectsOutput: z.ZodTypeAny = z.object({\n projects: z.array(OwlProtocolListProjects_ProjectSchema).describe(\"List of project objects.\"),\n}).describe(\"Response model for listing all projects.\");\n\nexport const owlProtocolListProjects = action(\"OWL_PROTOCOL_LIST_PROJECTS\", {\n slug: \"owl_protocol-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all projects. Use when you need to retrieve all projects accessible by the authenticated user.\",\n input: OwlProtocolListProjectsInput,\n output: OwlProtocolListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA6CA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACzH,MAAM,wCAAsDA,IAAAA,EAAE,OAAO;CACnE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACxE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CAC7E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAChE,MAAa,gCAA8CA,IAAAA,EAAE,OAAO,EAClE,UAAUA,IAAAA,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,0BAA0B,EAC9F,CAAC,CAAC,CAAC,SAAS,0CAA0C;AAEtD,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-projects.d.ts
4
+ declare const OwlProtocolListProjectsInput: z.ZodTypeAny;
5
+ declare const OwlProtocolListProjectsOutput: z.ZodTypeAny;
6
+ declare const owlProtocolListProjects: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { owlProtocolListProjects };
9
+ //# sourceMappingURL=list-projects.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.d.cts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,4BAAA,EAA8B,CAAA,CAAE,UAA6E;AAAA,cAQ7G,6BAAA,EAA+B,CAAA,CAAE,UAES;AAAA,cAE1C,uBAAA,gCAAuB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-projects.d.ts
4
+ declare const OwlProtocolListProjectsInput: z.ZodTypeAny;
5
+ declare const OwlProtocolListProjectsOutput: z.ZodTypeAny;
6
+ declare const owlProtocolListProjects: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { owlProtocolListProjects };
9
+ //# sourceMappingURL=list-projects.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.d.mts","names":[],"sources":["../../src/actions/list-projects.ts"],"mappings":";;;cAIa,4BAAA,EAA8B,CAAA,CAAE,UAA6E;AAAA,cAQ7G,6BAAA,EAA+B,CAAA,CAAE,UAES;AAAA,cAE1C,uBAAA,gCAAuB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,22 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-projects.ts
4
+ const OwlProtocolListProjectsInput = z.object({}).describe("Request model for listing all projects.");
5
+ const OwlProtocolListProjects_ProjectSchema = z.object({
6
+ id: z.string().describe("Unique identifier for the project."),
7
+ name: z.string().describe("Name of the project."),
8
+ createdAt: z.string().describe("Timestamp when the project was created."),
9
+ updatedAt: z.string().describe("Timestamp when the project was last updated."),
10
+ description: z.string().describe("Description of the project.").nullable().optional()
11
+ }).passthrough().describe("Model representing a single project.");
12
+ const owlProtocolListProjects = action("OWL_PROTOCOL_LIST_PROJECTS", {
13
+ slug: "owl_protocol-list-projects",
14
+ name: "List Projects",
15
+ description: "Tool to list all projects. Use when you need to retrieve all projects accessible by the authenticated user.",
16
+ input: OwlProtocolListProjectsInput,
17
+ output: z.object({ projects: z.array(OwlProtocolListProjects_ProjectSchema).describe("List of project objects.") }).describe("Response model for listing all projects.")
18
+ });
19
+ //#endregion
20
+ export { owlProtocolListProjects };
21
+
22
+ //# sourceMappingURL=list-projects.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-projects.mjs","names":[],"sources":["../../src/actions/list-projects.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const OwlProtocolListProjectsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for listing all projects.\");\nconst OwlProtocolListProjects_ProjectSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier for the project.\"),\n name: z.string().describe(\"Name of the project.\"),\n createdAt: z.string().describe(\"Timestamp when the project was created.\"),\n updatedAt: z.string().describe(\"Timestamp when the project was last updated.\"),\n description: z.string().describe(\"Description of the project.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single project.\");\nexport const OwlProtocolListProjectsOutput: z.ZodTypeAny = z.object({\n projects: z.array(OwlProtocolListProjects_ProjectSchema).describe(\"List of project objects.\"),\n}).describe(\"Response model for listing all projects.\");\n\nexport const owlProtocolListProjects = action(\"OWL_PROTOCOL_LIST_PROJECTS\", {\n slug: \"owl_protocol-list-projects\",\n name: \"List Projects\",\n description: \"Tool to list all projects. Use when you need to retrieve all projects accessible by the authenticated user.\",\n input: OwlProtocolListProjectsInput,\n output: OwlProtocolListProjectsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA6C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACzH,MAAM,wCAAsD,EAAE,OAAO;CACnE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB;CAChD,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC;CACxE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C;CAC7E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sCAAsC;AAKhE,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyD,EAAE,OAAO,EAClE,UAAU,EAAE,MAAM,qCAAqC,CAAC,CAAC,SAAS,0BAA0B,EAC9F,CAAC,CAAC,CAAC,SAAS,0CAOF;AACV,CAAC"}
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const owlProtocol = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "owl_protocol",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.owlProtocol = owlProtocol;
8
+
9
+ //# sourceMappingURL=app.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const owlProtocol = defineApp({\n slug: \"owl_protocol\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,eAAA,uCAAA,CAAA,CAAA,UAAA,CAAwB;CACnC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const owlProtocol: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { owlProtocol };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const owlProtocol: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { owlProtocol };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,WAAA,6BAAW,GAAA,+BAAA,UAAA"}
package/dist/app.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { defineApp } from "@keystrokehq/keystroke/app";
2
+ //#region src/app.ts
3
+ const owlProtocol = defineApp({
4
+ slug: "owl_protocol",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { owlProtocol };
9
+
10
+ //# sourceMappingURL=app.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const owlProtocol = defineApp({\n slug: \"owl_protocol\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,cAAc,UAAU;CACnC,MAAM;CACN,MAAM;AACR,CAAC"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const owlProtocolCatalog = {
4
+ "slug": "owl_protocol",
5
+ "name": "Owl Protocol",
6
+ "description": "Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.",
7
+ "category": "Developer Tools",
8
+ "logo": "https://logos.composio.dev/api/owl_protocol",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.owlProtocolCatalog = owlProtocolCatalog;
14
+
15
+ //# sourceMappingURL=catalog.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const owlProtocolCatalog = {\n \"slug\": \"owl_protocol\",\n \"name\": \"Owl Protocol\",\n \"description\": \"Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/owl_protocol\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const owlProtocolCatalog: {
4
+ readonly slug: "owl_protocol";
5
+ readonly name: "Owl Protocol";
6
+ readonly description: "Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.";
7
+ readonly category: "Developer Tools";
8
+ readonly logo: "https://logos.composio.dev/api/owl_protocol";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { owlProtocolCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const owlProtocolCatalog: {
4
+ readonly slug: "owl_protocol";
5
+ readonly name: "Owl Protocol";
6
+ readonly description: "Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.";
7
+ readonly category: "Developer Tools";
8
+ readonly logo: "https://logos.composio.dev/api/owl_protocol";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { owlProtocolCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const owlProtocolCatalog = {
4
+ "slug": "owl_protocol",
5
+ "name": "Owl Protocol",
6
+ "description": "Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.",
7
+ "category": "Developer Tools",
8
+ "logo": "https://logos.composio.dev/api/owl_protocol",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { owlProtocolCatalog };
14
+
15
+ //# sourceMappingURL=catalog.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const owlProtocolCatalog = {\n \"slug\": \"owl_protocol\",\n \"name\": \"Owl Protocol\",\n \"description\": \"Owl Protocol empowers developers to build feature-rich, user-friendly Web3 applications for mainstream adoption through modular infrastructure that simplifies blockchain development.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/owl_protocol\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,18 @@
1
+ let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "owl_protocol";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeOwlProtocolTool(tool, args) {
7
+ const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ exports.executeOwlProtocolTool = executeOwlProtocolTool;
17
+
18
+ //# sourceMappingURL=execute.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"owl_protocol\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeOwlProtocolTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,uBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
@@ -0,0 +1,18 @@
1
+ import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "owl_protocol";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeOwlProtocolTool(tool, args) {
7
+ const { result } = await createKeystrokeClient().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ export { executeOwlProtocolTool };
17
+
18
+ //# sourceMappingURL=execute.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"owl_protocol\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeOwlProtocolTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,uBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
package/dist/index.cjs ADDED
@@ -0,0 +1,12 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_app = require("./app.cjs");
3
+ const require_catalog = require("./catalog.cjs");
4
+ const require_deploy_collection = require("./actions/deploy-collection.cjs");
5
+ const require_get_project_details = require("./actions/get-project-details.cjs");
6
+ const require_list_projects = require("./actions/list-projects.cjs");
7
+ require("./actions/index.cjs");
8
+ exports.owlProtocol = require_app.owlProtocol;
9
+ exports.owlProtocolCatalog = require_catalog.owlProtocolCatalog;
10
+ exports.owlProtocolDeployCollection = require_deploy_collection.owlProtocolDeployCollection;
11
+ exports.owlProtocolGetProjectDetails = require_get_project_details.owlProtocolGetProjectDetails;
12
+ exports.owlProtocolListProjects = require_list_projects.owlProtocolListProjects;
@@ -0,0 +1,6 @@
1
+ import { owlProtocolDeployCollection } from "./actions/deploy-collection.cjs";
2
+ import { owlProtocolGetProjectDetails } from "./actions/get-project-details.cjs";
3
+ import { owlProtocolListProjects } from "./actions/list-projects.cjs";
4
+ import { owlProtocol } from "./app.cjs";
5
+ import { owlProtocolCatalog } from "./catalog.cjs";
6
+ export { owlProtocol, owlProtocolCatalog, owlProtocolDeployCollection, owlProtocolGetProjectDetails, owlProtocolListProjects };
@@ -0,0 +1,6 @@
1
+ import { owlProtocolDeployCollection } from "./actions/deploy-collection.mjs";
2
+ import { owlProtocolGetProjectDetails } from "./actions/get-project-details.mjs";
3
+ import { owlProtocolListProjects } from "./actions/list-projects.mjs";
4
+ import { owlProtocol } from "./app.mjs";
5
+ import { owlProtocolCatalog } from "./catalog.mjs";
6
+ export { owlProtocol, owlProtocolCatalog, owlProtocolDeployCollection, owlProtocolGetProjectDetails, owlProtocolListProjects };
package/dist/index.mjs ADDED
@@ -0,0 +1,7 @@
1
+ import { owlProtocol } from "./app.mjs";
2
+ import { owlProtocolCatalog } from "./catalog.mjs";
3
+ import { owlProtocolDeployCollection } from "./actions/deploy-collection.mjs";
4
+ import { owlProtocolGetProjectDetails } from "./actions/get-project-details.mjs";
5
+ import { owlProtocolListProjects } from "./actions/list-projects.mjs";
6
+ import "./actions/index.mjs";
7
+ export { owlProtocol, owlProtocolCatalog, owlProtocolDeployCollection, owlProtocolGetProjectDetails, owlProtocolListProjects };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@keystrokehq/owl_protocol",
3
+ "version": "0.1.0",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/keystrokehq/keystroke.git",
11
+ "directory": "packages/integrations/owl_protocol"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.mts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.mts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.cjs"
26
+ },
27
+ "./actions": {
28
+ "types": "./dist/actions/index.d.mts",
29
+ "import": "./dist/actions/index.mjs",
30
+ "require": "./dist/actions/index.cjs"
31
+ }
32
+ },
33
+ "peerDependencies": {
34
+ "@keystrokehq/keystroke": "^0.1.4",
35
+ "zod": "^4.4.3"
36
+ },
37
+ "devDependencies": {
38
+ "@keystrokehq/keystroke": "link:../../keystroke",
39
+ "@types/node": "^25.9.1",
40
+ "tsdown": "^0.22.0",
41
+ "typescript": "^6.0.3",
42
+ "zod": "^4.4.3"
43
+ },
44
+ "scripts": {
45
+ "build": "tsdown",
46
+ "dev": "tsdown --watch --no-clean",
47
+ "typecheck": "tsc --noEmit"
48
+ }
49
+ }