@marktoflow/cli 2.0.0-alpha.11 → 2.0.0-alpha.12
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 +18 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +513 -11
- package/dist/index.js.map +1 -1
- package/dist/oauth.d.ts +6 -0
- package/dist/oauth.d.ts.map +1 -1
- package/dist/oauth.js +139 -7
- package/dist/oauth.js.map +1 -1
- package/dist/serve.d.ts +3 -0
- package/dist/serve.d.ts.map +1 -0
- package/dist/serve.js +453 -0
- package/dist/serve.js.map +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,11 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
> **Author:** Scott Glover <scottgl@gmail.com>
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**CLI-first agent automation framework** with native MCP support and direct SDK integration.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**Version:** 2.0.0-alpha.12
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## What is marktoflow?
|
|
12
|
+
|
|
13
|
+
marktoflow is a **CLI-first automation framework** that lets you define workflows in Markdown + YAML and execute them across 20+ services. Write workflows as code, run them from the terminal, and optionally use the visual designer for editing.
|
|
14
|
+
|
|
15
|
+
**Key Differentiators:**
|
|
16
|
+
|
|
17
|
+
- 🖥️ **CLI-First** - Design and run workflows from your terminal
|
|
18
|
+
- 📝 **Workflows as Markdown** - Human-readable, version-controlled automation
|
|
19
|
+
- 🔌 **Native SDK Integration** - Direct method calls with full type safety
|
|
20
|
+
- 🤖 **AI Agent Support** - GitHub Copilot, Claude, Ollama - use existing subscriptions
|
|
21
|
+
- 🌐 **Universal REST Client** - Connect to any API without custom integrations
|
|
22
|
+
- 🎨 **Visual Designer (Optional)** - Web-based drag-and-drop editor
|
|
23
|
+
- 🏢 **Enterprise Ready** - RBAC, approvals, audit logging, cost tracking
|
|
10
24
|
|
|
11
25
|
## Features
|
|
12
26
|
|
|
@@ -38,7 +52,7 @@ npx @marktoflow/cli@alpha <command>
|
|
|
38
52
|
### Install from GitHub
|
|
39
53
|
|
|
40
54
|
```bash
|
|
41
|
-
npm install -g github:
|
|
55
|
+
npm install -g github:marktoflow/marktoflow#main
|
|
42
56
|
```
|
|
43
57
|
|
|
44
58
|
## Quick Start
|