@marktoflow/marktoflow 2.0.2 → 2.0.4-alpha.1

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.
Files changed (2) hide show
  1. package/README.md +58 -18
  2. package/package.json +51 -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 where your workflows are just markdown files.</strong>
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-Apache--2.0-blue" alt="License" /></a>
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,34 +23,70 @@
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** — Parser, engine, state management
23
- - **@marktoflow/gui** — Visual workflow designer
24
- - **@marktoflow/integrations** — 30+ service integrations and AI adapters
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
 
28
32
  ```bash
29
- npm install -g @marktoflow/marktoflow
33
+ npm install -g marktoflow
30
34
  ```
31
35
 
32
36
  ## Usage
33
37
 
34
38
  ```bash
35
- marktoflow init # Initialize project
36
- marktoflow run workflow.md # Run a workflow
37
- marktoflow run workflow.md --agent copilot # Use AI agent
38
- marktoflow gui # Launch visual editor
39
- marktoflow connect gmail # Setup OAuth
40
- marktoflow serve --port 3000 # Start webhook server
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
- - **Markdown-native** — Workflows are `.md` files, not proprietary JSON
46
- - **30+ integrations** — Slack, GitHub, Jira, Gmail, Stripe, and more
47
- - **AI agents** — Use your existing Copilot/Claude/Codex subscriptions
48
- - **Visual editor** — Optional drag-and-drop GUI
49
- - **Enterprise ready** — RBAC, audit logging, cost tracking, retry logic
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
- Apache-2.0
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.2",
4
- "description": "Complete marktoflow installation - agent automation framework with native MCP support",
3
+ "version": "2.0.4-alpha.1",
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"
@@ -15,12 +15,17 @@
15
15
  "bugs": {
16
16
  "url": "https://github.com/marktoflow/marktoflow/issues"
17
17
  },
18
+ "overrides": {
19
+ "@anthropic-ai/claude-agent-sdk": {
20
+ "zod": "^3.24.0"
21
+ }
22
+ },
18
23
  "scripts": {},
19
24
  "dependencies": {
20
- "@marktoflow/cli": "2.0.2",
21
- "@marktoflow/core": "2.0.2",
22
- "@marktoflow/gui": "2.0.2",
23
- "@marktoflow/integrations": "2.0.2"
25
+ "@marktoflow/cli": "2.0.4-alpha.1",
26
+ "@marktoflow/core": "2.0.4-alpha.1",
27
+ "@marktoflow/gui": "2.0.4-alpha.1",
28
+ "@marktoflow/integrations": "2.0.4-alpha.1"
24
29
  },
25
30
  "files": [
26
31
  "README.md",
@@ -28,22 +33,57 @@
28
33
  ],
29
34
  "keywords": [
30
35
  "marktoflow",
31
- "automation",
32
36
  "workflow",
37
+ "automation",
38
+ "ai-workflow",
39
+ "ai-agents",
40
+ "ai-automation",
41
+ "tool-calling",
42
+ "function-calling",
43
+ "agentic",
44
+ "llm",
45
+ "openai",
46
+ "claude",
47
+ "copilot",
48
+ "ollama",
49
+ "llama-cpp",
50
+ "vllm",
51
+ "local-llm",
52
+ "mcp",
53
+ "model-context-protocol",
54
+ "markdown",
55
+ "yaml",
56
+ "typescript",
33
57
  "cli",
34
58
  "gui",
35
- "mcp",
59
+ "visual-editor",
60
+ "workflow-engine",
61
+ "workflow-automation",
62
+ "self-hosted",
63
+ "open-source",
64
+ "zapier-alternative",
65
+ "n8n-alternative",
66
+ "no-code",
67
+ "low-code",
36
68
  "slack",
37
69
  "github",
38
70
  "jira",
39
- "ai-agents",
40
- "metapackage"
71
+ "gmail",
72
+ "structured-output",
73
+ "json-schema",
74
+ "private",
75
+ "secure",
76
+ "air-gapped",
77
+ "local-first",
78
+ "no-telemetry",
79
+ "data-privacy",
80
+ "on-premise"
41
81
  ],
42
82
  "engines": {
43
83
  "node": ">=18"
44
84
  },
45
85
  "author": "Scott Glover",
46
- "license": "Apache-2.0",
86
+ "license": "AGPL-3.0-only",
47
87
  "publishConfig": {
48
88
  "registry": "https://registry.npmjs.org/"
49
89
  }