agentic-surfaces 0.1.5

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/bin.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
package/dist/bin.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ // `agentic-surfaces` — the friendly top-level entry point. Thin wrapper over the
3
+ // CLI so users can run `npx agentic-surfaces run <workflow> [--ui]` without the
4
+ // scoped @agentic-surfaces/cli name. All commands/flags are the CLI's.
5
+ import { run } from "@agentic-surfaces/cli";
6
+ run(process.argv.slice(2)).then((code) => process.exit(code));
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "agentic-surfaces",
3
+ "version": "0.1.5",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "description": "Run agentic-surfaces workflows: `npx agentic-surfaces run <workflow> [--ui]`",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "bin": {
11
+ "agentic-surfaces": "dist/bin.js"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "dependencies": {
17
+ "@agentic-surfaces/cli": "0.1.5"
18
+ },
19
+ "scripts": {
20
+ "build": "tsc -b"
21
+ }
22
+ }