@marktoflow/marktoflow 2.0.3 → 2.0.4
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 +57 -17
- package/package.json +46 -11
package/README.md
CHANGED
|
@@ -5,12 +5,16 @@
|
|
|
5
5
|
<h1 align="center">marktoflow</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<strong>Open-source workflow automation
|
|
8
|
+
<strong>Open-source AI workflow automation — your workflows are just markdown files.</strong>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
Use your Copilot/Claude/Codex subscriptions · 38 integrations · Tool calling · Visual editor · Self-hosted
|
|
9
13
|
</p>
|
|
10
14
|
|
|
11
15
|
<p align="center">
|
|
12
16
|
<a href="https://www.npmjs.com/package/@marktoflow/marktoflow"><img src="https://img.shields.io/npm/v/@marktoflow/marktoflow" alt="npm version" /></a>
|
|
13
|
-
<a href="https://github.com/marktoflow/marktoflow/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-
|
|
17
|
+
<a href="https://github.com/marktoflow/marktoflow/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-AGPL--3.0-blue" alt="License" /></a>
|
|
14
18
|
<a href="https://github.com/marktoflow/marktoflow/stargazers"><img src="https://img.shields.io/github/stars/marktoflow/marktoflow" alt="GitHub stars" /></a>
|
|
15
19
|
</p>
|
|
16
20
|
|
|
@@ -19,9 +23,9 @@
|
|
|
19
23
|
This is the all-in-one package that includes everything you need:
|
|
20
24
|
|
|
21
25
|
- **@marktoflow/cli** — Command-line interface and workflow runner
|
|
22
|
-
- **@marktoflow/core** —
|
|
23
|
-
- **@marktoflow/gui** — Visual workflow designer
|
|
24
|
-
- **@marktoflow/integrations** —
|
|
26
|
+
- **@marktoflow/core** — Workflow engine, parser, state management, plugin system
|
|
27
|
+
- **@marktoflow/gui** — Visual drag-and-drop workflow designer
|
|
28
|
+
- **@marktoflow/integrations** — 38 service integrations and AI agent adapters
|
|
25
29
|
|
|
26
30
|
## Install
|
|
27
31
|
|
|
@@ -32,21 +36,57 @@ npm install -g @marktoflow/marktoflow
|
|
|
32
36
|
## Usage
|
|
33
37
|
|
|
34
38
|
```bash
|
|
35
|
-
marktoflow init
|
|
36
|
-
marktoflow run workflow.md
|
|
37
|
-
marktoflow run workflow.md --agent copilot
|
|
38
|
-
marktoflow
|
|
39
|
-
marktoflow
|
|
40
|
-
marktoflow
|
|
39
|
+
marktoflow init # Initialize project
|
|
40
|
+
marktoflow run workflow.md # Run a workflow
|
|
41
|
+
marktoflow run workflow.md --agent copilot # Use your GitHub Copilot subscription
|
|
42
|
+
marktoflow run workflow.md --agent claude # Use your Claude subscription (CLI login)
|
|
43
|
+
marktoflow run workflow.md --agent codex # Use your Codex subscription
|
|
44
|
+
marktoflow run workflow.md --agent ollama # Use Ollama (free, local)
|
|
45
|
+
marktoflow run workflow.md --agent vllm # Use local llama.cpp / VLLM
|
|
46
|
+
marktoflow gui # Launch visual editor
|
|
47
|
+
marktoflow connect gmail # Setup OAuth
|
|
48
|
+
marktoflow serve --port 3000 # Start webhook server
|
|
41
49
|
```
|
|
42
50
|
|
|
43
51
|
## Why marktoflow?
|
|
44
52
|
|
|
45
|
-
- **
|
|
46
|
-
- **
|
|
47
|
-
- **AI agents** —
|
|
48
|
-
- **
|
|
49
|
-
- **
|
|
53
|
+
- **Use your existing AI subscriptions** — Copilot, Claude, Codex — no extra API keys needed
|
|
54
|
+
- **Markdown-native** — Workflows are `.md` files — readable, auditable, version-controlled
|
|
55
|
+
- **AI agents with tool calling** — Agentic loops where models decide which tools to invoke
|
|
56
|
+
- **38 integrations** — Slack, GitHub, Jira, Gmail, Stripe, Google Sheets, and more
|
|
57
|
+
- **Local LLMs too** — Optional llama.cpp, VLLM, Ollama for air-gapped or offline use
|
|
58
|
+
- **Secure by default** — Self-hosted, no telemetry, your data never leaves
|
|
59
|
+
- **Visual editor** — Optional drag-and-drop GUI with real-time execution
|
|
60
|
+
- **Parallel execution** — Run multiple AI agents concurrently for faster results
|
|
61
|
+
- **MCP support** — Native Model Context Protocol integration
|
|
62
|
+
- **Structured output** — JSON mode and JSON Schema validation for reliable AI responses
|
|
63
|
+
- **Enterprise ready** — RBAC, audit logging, cost tracking, AES-256 credential encryption
|
|
64
|
+
|
|
65
|
+
## AI Agent Tool Calling
|
|
66
|
+
|
|
67
|
+
Build agentic workflows where the AI decides which tools to call:
|
|
68
|
+
|
|
69
|
+
```yaml
|
|
70
|
+
steps:
|
|
71
|
+
- action: ai.chatWithTools
|
|
72
|
+
inputs:
|
|
73
|
+
messages:
|
|
74
|
+
- role: user
|
|
75
|
+
content: "Research {{ inputs.topic }} and summarize findings"
|
|
76
|
+
tools:
|
|
77
|
+
- type: function
|
|
78
|
+
function:
|
|
79
|
+
name: search
|
|
80
|
+
description: Search the web
|
|
81
|
+
parameters:
|
|
82
|
+
type: object
|
|
83
|
+
properties:
|
|
84
|
+
query: { type: string }
|
|
85
|
+
required: [query]
|
|
86
|
+
maxTurns: 5
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Works with OpenAI, local llama.cpp, VLLM, LM Studio, and any OpenAI-compatible endpoint.
|
|
50
90
|
|
|
51
91
|
## Learn More
|
|
52
92
|
|
|
@@ -56,4 +96,4 @@ Full documentation, examples, and source code:
|
|
|
56
96
|
|
|
57
97
|
## License
|
|
58
98
|
|
|
59
|
-
|
|
99
|
+
[AGPL-3.0](https://github.com/marktoflow/marktoflow/blob/main/LICENSE) — Free for personal and open source use. Commercial licensing available — contact [scottgl@gmail.com](mailto:scottgl@gmail.com).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marktoflow/marktoflow",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.4",
|
|
4
|
+
"description": "Open-source AI workflow automation with tool calling, 38 integrations, and local LLM support — workflows are just markdown files",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"marktoflow": "./bin/marktoflow.js"
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"scripts": {},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@marktoflow/cli": "2.0.
|
|
21
|
-
"@marktoflow/core": "2.0.
|
|
22
|
-
"@marktoflow/gui": "2.0.
|
|
23
|
-
"@marktoflow/integrations": "2.0.
|
|
20
|
+
"@marktoflow/cli": "2.0.4",
|
|
21
|
+
"@marktoflow/core": "2.0.4",
|
|
22
|
+
"@marktoflow/gui": "2.0.4",
|
|
23
|
+
"@marktoflow/integrations": "2.0.4"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"README.md",
|
|
@@ -28,22 +28,57 @@
|
|
|
28
28
|
],
|
|
29
29
|
"keywords": [
|
|
30
30
|
"marktoflow",
|
|
31
|
-
"automation",
|
|
32
31
|
"workflow",
|
|
32
|
+
"automation",
|
|
33
|
+
"ai-workflow",
|
|
34
|
+
"ai-agents",
|
|
35
|
+
"ai-automation",
|
|
36
|
+
"tool-calling",
|
|
37
|
+
"function-calling",
|
|
38
|
+
"agentic",
|
|
39
|
+
"llm",
|
|
40
|
+
"openai",
|
|
41
|
+
"claude",
|
|
42
|
+
"copilot",
|
|
43
|
+
"ollama",
|
|
44
|
+
"llama-cpp",
|
|
45
|
+
"vllm",
|
|
46
|
+
"local-llm",
|
|
47
|
+
"mcp",
|
|
48
|
+
"model-context-protocol",
|
|
49
|
+
"markdown",
|
|
50
|
+
"yaml",
|
|
51
|
+
"typescript",
|
|
33
52
|
"cli",
|
|
34
53
|
"gui",
|
|
35
|
-
"
|
|
54
|
+
"visual-editor",
|
|
55
|
+
"workflow-engine",
|
|
56
|
+
"workflow-automation",
|
|
57
|
+
"self-hosted",
|
|
58
|
+
"open-source",
|
|
59
|
+
"zapier-alternative",
|
|
60
|
+
"n8n-alternative",
|
|
61
|
+
"no-code",
|
|
62
|
+
"low-code",
|
|
36
63
|
"slack",
|
|
37
64
|
"github",
|
|
38
65
|
"jira",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
66
|
+
"gmail",
|
|
67
|
+
"structured-output",
|
|
68
|
+
"json-schema",
|
|
69
|
+
"private",
|
|
70
|
+
"secure",
|
|
71
|
+
"air-gapped",
|
|
72
|
+
"local-first",
|
|
73
|
+
"no-telemetry",
|
|
74
|
+
"data-privacy",
|
|
75
|
+
"on-premise"
|
|
41
76
|
],
|
|
42
77
|
"engines": {
|
|
43
78
|
"node": ">=18"
|
|
44
79
|
},
|
|
45
80
|
"author": "Scott Glover",
|
|
46
|
-
"license": "
|
|
81
|
+
"license": "AGPL-3.0-only",
|
|
47
82
|
"publishConfig": {
|
|
48
83
|
"registry": "https://registry.npmjs.org/"
|
|
49
84
|
}
|