epismo 0.1.0 → 0.1.2

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/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Epismo CLI
2
2
 
3
- Command-line interface for [Epismo](https://epismo.ai).
3
+ GitHub made code reusable. Hugging Face made models reusable. Epismo makes human-AI workflows reusable.
4
+
5
+ Capture how you got your best results — not just the output — and share them as executable workflows that agents and humans can discover, adapt, and run across projects.
4
6
 
5
7
  ## Install
6
8
 
@@ -16,51 +18,24 @@ npx epismo <command>
16
18
 
17
19
  ## Authentication
18
20
 
19
- ### Default login (OTP)
20
-
21
- ```bash
22
- epismo login
23
- ```
24
-
25
- Prompts for email and OTP code by default.
26
-
27
- You can also provide the values inline:
28
-
29
- ```bash
30
- epismo login --email you@example.com --pin 123456
31
- ```
32
-
33
- ### Browser login
34
-
35
- ```bash
36
- epismo login --browser
37
- ```
38
-
39
- Opens a browser and signs you in via OAuth.
40
-
41
- ### Logout
42
-
43
- Clears local credentials.
44
-
45
21
  ```bash
46
- epismo logout
22
+ epismo login # OTP (prompts for email + code)
23
+ epismo login --email you@example.com --pin 123456 # inline values
24
+ epismo login --browser # OAuth via browser
25
+ epismo logout # clear local credentials
47
26
  ```
48
27
 
49
28
  ## Commands
50
29
 
51
30
  ### `epismo whoami`
52
31
 
53
- Show the currently authenticated user and accessible workspaces.
54
-
55
- ```bash
56
- epismo whoami
57
- ```
32
+ Show the current user and accessible workspaces.
58
33
 
59
34
  ### `epismo workspace`
60
35
 
61
36
  ```bash
62
37
  epismo workspace list # list accessible workspaces
63
- epismo workspace current # show saved default workspace
38
+ epismo workspace current # show saved default
64
39
  epismo workspace use <workspace-id> # set default workspace
65
40
  epismo workspace clear # clear default workspace
66
41
  ```
@@ -80,6 +55,8 @@ epismo track delete --type task --id <id>
80
55
 
81
56
  ### `epismo asset`
82
57
 
58
+ Manage workflows and other assets.
59
+
83
60
  ```bash
84
61
  epismo asset upsert --type workflow --title "My workflow" --input @workflow.json
85
62
  epismo asset get --type workflow --id <id>
@@ -97,19 +74,25 @@ epismo credit balance
97
74
  epismo credit balance --workspace-id <workspace-id>
98
75
  ```
99
76
 
77
+ ## Skills
78
+
79
+ Skills are reusable instruction sets that give AI agents step-by-step processes for common project operations (intake, planning, coordination, and more). Any agent with Epismo access — via CLI or MCP — can load and run them.
80
+
81
+ Browse skills: https://github.com/epismoai/skills
82
+
100
83
  ## Workspace Selection
101
84
 
102
- - `epismo workspace use <workspace-id>` saves the default workspace.
103
- - `--workspace-id <id>` overrides the saved default for a single command.
85
+ - `epismo workspace use <workspace-id>` saves the default for all commands.
86
+ - `--workspace-id <id>` overrides the default for a single command.
104
87
  - If neither is set, the CLI operates in personal context.
105
88
 
106
- ## Input Conventions
89
+ ## Input
107
90
 
108
- - `--input <json>` accepts an inline JSON object.
109
- - `--input @path/to/file.json` loads a JSON object from a file.
110
- - `--input -` reads a JSON object from stdin.
111
- - Explicit flags override fields loaded from `--input`.
91
+ - `--input <json>` inline JSON object
92
+ - `--input @path/to/file.json` load from file
93
+ - `--input -` read from stdin
94
+ - Explicit flags override fields from `--input`
112
95
 
113
96
  ## Output
114
97
 
115
- All commands output JSON by default. Pass `--json` to force JSON output when a human-readable summary is also available.
98
+ All commands output JSON by default. Pass `--json` to force JSON when a human-readable summary is also available.
package/dist/bin.js CHANGED
@@ -1,5 +1,3 @@
1
1
  #!/usr/bin/env node
2
- import { register } from "tsx/esm/api";
3
- register();
4
- await import("./index.js");
2
+ import "./index.js";
5
3
  //# sourceMappingURL=bin.js.map
package/dist/bin.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"bin.js","sourceRoot":"","sources":["../src/bin.ts"],"names":[],"mappings":";AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAEvC,QAAQ,EAAE,CAAC;AACX,MAAM,MAAM,CAAC,YAAY,CAAC,CAAC"}
1
+ {"version":3,"file":"bin.js","sourceRoot":"","sources":["../src/bin.ts"],"names":[],"mappings":";AAEA,OAAO,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,28 +1,25 @@
1
1
  {
2
2
  "name": "epismo",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "epismo": "dist/bin.js"
7
7
  },
8
- "files": ["dist", "README.md"],
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
9
12
  "publishConfig": {
10
13
  "access": "public"
11
14
  },
12
15
  "scripts": {
13
16
  "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
14
17
  "start": "node dist/bin.js",
15
- "dev": "tsx watch src/index.ts",
16
18
  "build": "npm run clean && tsc -p tsconfig.json && chmod +x dist/bin.js",
17
19
  "typecheck": "tsc --noEmit -p tsconfig.json",
18
20
  "lint": "eslint ."
19
21
  },
20
22
  "dependencies": {
21
- "@bufbuild/protobuf": "^2.2.3",
22
- "@grpc/grpc-js": "^1.13.2",
23
- "commander": "^14.0.1",
24
- "google-auth-library": "^10.1.0",
25
- "tsx": "^4.20.6",
26
- "zod": "^3.25.76"
23
+ "commander": "^14.0.1"
27
24
  }
28
25
  }