@marktoflow/cli 2.0.0-alpha.10 → 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 +25 -11
- package/dist/index.d.ts +1 -1
- package/dist/index.js +516 -12
- 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 +7 -7
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
|
|
@@ -535,7 +549,7 @@ ls -la .marktoflow/credentials/
|
|
|
535
549
|
### Install from source
|
|
536
550
|
|
|
537
551
|
```bash
|
|
538
|
-
git clone https://github.com/
|
|
552
|
+
git clone https://github.com/marktoflow/marktoflow.git
|
|
539
553
|
cd marktoflow
|
|
540
554
|
pnpm install
|
|
541
555
|
pnpm build
|
|
@@ -550,17 +564,17 @@ pnpm test
|
|
|
550
564
|
|
|
551
565
|
## Links
|
|
552
566
|
|
|
553
|
-
- [Main Repository](https://github.com/
|
|
554
|
-
- [Documentation](https://github.com/
|
|
555
|
-
- [Installation Guide](https://github.com/
|
|
556
|
-
- [Publishing Guide](https://github.com/
|
|
567
|
+
- [Main Repository](https://github.com/marktoflow/marktoflow)
|
|
568
|
+
- [Documentation](https://github.com/marktoflow/marktoflow#readme)
|
|
569
|
+
- [Installation Guide](https://github.com/marktoflow/marktoflow/blob/main/docs/INSTALLATION.md)
|
|
570
|
+
- [Publishing Guide](https://github.com/marktoflow/marktoflow/blob/main/docs/PUBLISHING.md)
|
|
557
571
|
- [Core Package](@marktoflow/core)
|
|
558
572
|
- [Integrations Package](@marktoflow/integrations)
|
|
559
573
|
|
|
560
574
|
## Support
|
|
561
575
|
|
|
562
|
-
- [GitHub Issues](https://github.com/
|
|
563
|
-
- [Discussions](https://github.com/
|
|
576
|
+
- [GitHub Issues](https://github.com/marktoflow/marktoflow/issues)
|
|
577
|
+
- [Discussions](https://github.com/marktoflow/marktoflow/discussions)
|
|
564
578
|
|
|
565
579
|
## License
|
|
566
580
|
|