0nork 1.0.0
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/LICENSE +31 -0
- package/README.md +164 -0
- package/index.js +53 -0
- package/package.json +47 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 0nORK
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
───────────────────────────────────────────────────────────────────────────────
|
|
24
|
+
|
|
25
|
+
TRADEMARK NOTICE
|
|
26
|
+
|
|
27
|
+
"0nORK", "0nMCP", ".0n", and "The .0n Standard" are trademarks of 0nORK.
|
|
28
|
+
|
|
29
|
+
While this software is freely usable under the MIT License, the trademarks are
|
|
30
|
+
protected. Unauthorized use of these marks to imply endorsement or official
|
|
31
|
+
status is prohibited.
|
package/README.md
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://0nork.com/logo.svg" alt="0nORK" width="300" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">0nORK</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>AI Orchestration Infrastructure</strong>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
<a href="https://0nork.com">Website</a> •
|
|
13
|
+
<a href="https://github.com/0nork">GitHub</a> •
|
|
14
|
+
<a href="https://discord.gg/0nork">Discord</a>
|
|
15
|
+
</p>
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## What is 0nORK?
|
|
20
|
+
|
|
21
|
+
0nORK builds infrastructure for AI orchestration. We create tools that let AI systems connect to and control external services through natural language.
|
|
22
|
+
|
|
23
|
+
**Our mission**: Make AI orchestration as simple as flipping a switch.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Products
|
|
28
|
+
|
|
29
|
+
### 🔌 0nMCP
|
|
30
|
+
|
|
31
|
+
**Universal AI API Orchestrator**
|
|
32
|
+
|
|
33
|
+
Connect Claude to 17+ services. Say what you want. AI does the rest.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx 0nmcp init
|
|
37
|
+
npx 0nmcp connect
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
**Links**: [NPM](https://npmjs.com/package/0nmcp) • [GitHub](https://github.com/0nork/0nmcp) • [Docs](https://0nmcp.com/docs)
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
### 📋 The .0n Standard
|
|
45
|
+
|
|
46
|
+
**Universal configuration format for AI orchestration**
|
|
47
|
+
|
|
48
|
+
Like `.env` for environment variables, `.0n` is for AI orchestration config.
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
npx 0n-spec validate my-workflow.0n
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
**Links**: [NPM](https://npmjs.com/package/0n-spec) • [GitHub](https://github.com/0nork/0n-spec) • [Specification](https://github.com/0nork/0n-spec/blob/main/SPEC.md)
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## The .0n Ecosystem
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
~/.0n/ ← Universal config directory
|
|
62
|
+
├── config.json ← Global settings
|
|
63
|
+
├── connections/ ← Service credentials
|
|
64
|
+
│ ├── stripe.0n
|
|
65
|
+
│ ├── slack.0n
|
|
66
|
+
│ └── gohighlevel.0n
|
|
67
|
+
├── workflows/ ← Automation definitions
|
|
68
|
+
│ └── invoice-notify.0n
|
|
69
|
+
├── snapshots/ ← System state captures
|
|
70
|
+
│ └── crm-setup.0n
|
|
71
|
+
└── history/ ← Execution logs
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
**Every 0nORK product uses `~/.0n/`** — one config to rule them all.
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Quick Start
|
|
79
|
+
|
|
80
|
+
### 1. Install the MCP Server
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
npx 0nmcp init
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### 2. Connect Services
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
npx 0nmcp connect
|
|
90
|
+
# Follow prompts to add Stripe, Slack, etc.
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### 3. Configure Claude Desktop
|
|
94
|
+
|
|
95
|
+
Add to `claude_desktop_config.json`:
|
|
96
|
+
|
|
97
|
+
```json
|
|
98
|
+
{
|
|
99
|
+
"mcpServers": {
|
|
100
|
+
"0nmcp": {
|
|
101
|
+
"command": "npx",
|
|
102
|
+
"args": ["-y", "0nmcp"]
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### 4. Orchestrate!
|
|
109
|
+
|
|
110
|
+
Ask Claude:
|
|
111
|
+
> "Invoice john@acme.com for $500 and notify #sales on Slack"
|
|
112
|
+
|
|
113
|
+
Claude handles the rest.
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
|
|
117
|
+
## Brand Assets
|
|
118
|
+
|
|
119
|
+
| Asset | URL |
|
|
120
|
+
|-------|-----|
|
|
121
|
+
| 0nORK Logo | https://0nork.com/logo.svg |
|
|
122
|
+
| 0nMCP Logo | https://0nmcp.com/logo.svg |
|
|
123
|
+
| Brand Guide | https://0nork.com/brand |
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Links
|
|
128
|
+
|
|
129
|
+
| Resource | URL |
|
|
130
|
+
|----------|-----|
|
|
131
|
+
| **0nORK Website** | https://0nork.com |
|
|
132
|
+
| **0nMCP Website** | https://0nmcp.com |
|
|
133
|
+
| **Documentation** | https://0nmcp.com/docs |
|
|
134
|
+
| **GitHub Org** | https://github.com/0nork |
|
|
135
|
+
| **Discord** | https://discord.gg/0nork |
|
|
136
|
+
| **Twitter** | https://twitter.com/0nork |
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## Packages
|
|
141
|
+
|
|
142
|
+
| Package | Description | Install |
|
|
143
|
+
|---------|-------------|---------|
|
|
144
|
+
| `0nmcp` | MCP Server | `npx 0nmcp` |
|
|
145
|
+
| `0n-spec` | .0n Standard | `npx 0n-spec` |
|
|
146
|
+
| `0nork` | This package | `npm i 0nork` |
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## License
|
|
151
|
+
|
|
152
|
+
MIT License - see individual package licenses.
|
|
153
|
+
|
|
154
|
+
**Trademarks**: "0nORK", "0nMCP", ".0n", and "The .0n Standard" are trademarks of 0nORK.
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
<p align="center">
|
|
159
|
+
<strong>0nORK</strong>
|
|
160
|
+
<br>
|
|
161
|
+
<em>AI Orchestration Infrastructure</em>
|
|
162
|
+
<br><br>
|
|
163
|
+
Turn it on. It just works.
|
|
164
|
+
</p>
|
package/index.js
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ═══════════════════════════════════════════════════════════════════════════
|
|
3
|
+
* 0nORK - AI Orchestration Infrastructure
|
|
4
|
+
* ═══════════════════════════════════════════════════════════════════════════
|
|
5
|
+
*
|
|
6
|
+
* This is the parent package for the 0nORK ecosystem.
|
|
7
|
+
*
|
|
8
|
+
* Products:
|
|
9
|
+
* - 0nmcp: Universal AI API Orchestrator
|
|
10
|
+
* - 0n-spec: The .0n Standard
|
|
11
|
+
*
|
|
12
|
+
* Install the MCP server:
|
|
13
|
+
* npx 0nmcp init
|
|
14
|
+
*
|
|
15
|
+
* Learn more:
|
|
16
|
+
* https://0nork.com
|
|
17
|
+
*
|
|
18
|
+
* ═══════════════════════════════════════════════════════════════════════════
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
export const VERSION = '1.0.0';
|
|
22
|
+
|
|
23
|
+
export const PRODUCTS = {
|
|
24
|
+
'0nmcp': {
|
|
25
|
+
name: '0nMCP',
|
|
26
|
+
description: 'Universal AI API Orchestrator',
|
|
27
|
+
npm: 'https://npmjs.com/package/0nmcp',
|
|
28
|
+
github: 'https://github.com/0nork/0nmcp',
|
|
29
|
+
website: 'https://0nmcp.com',
|
|
30
|
+
install: 'npx 0nmcp init',
|
|
31
|
+
},
|
|
32
|
+
'0n-spec': {
|
|
33
|
+
name: 'The .0n Standard',
|
|
34
|
+
description: 'Universal configuration format for AI orchestration',
|
|
35
|
+
npm: 'https://npmjs.com/package/0n-spec',
|
|
36
|
+
github: 'https://github.com/0nork/0n-spec',
|
|
37
|
+
website: 'https://0nork.com/spec',
|
|
38
|
+
install: 'npx 0n-spec validate',
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export const LINKS = {
|
|
43
|
+
website: 'https://0nork.com',
|
|
44
|
+
github: 'https://github.com/0nork',
|
|
45
|
+
discord: 'https://discord.gg/0nork',
|
|
46
|
+
twitter: 'https://twitter.com/0nork',
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export default {
|
|
50
|
+
VERSION,
|
|
51
|
+
PRODUCTS,
|
|
52
|
+
LINKS,
|
|
53
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "0nork",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "0nORK - AI Orchestration Infrastructure. The parent company behind 0nMCP and the .0n standard.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"postinstall": "echo '\\n🚀 0nORK - AI Orchestration Infrastructure\\n\\nProducts:\\n • 0nmcp - Universal AI API Orchestrator\\n • 0n-spec - The .0n Standard\\n\\nInstall:\\n npx 0nmcp init\\n\\nLearn more: https://0nork.com\\n'"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"0nork",
|
|
11
|
+
"0nmcp",
|
|
12
|
+
"0n",
|
|
13
|
+
"mcp",
|
|
14
|
+
"model-context-protocol",
|
|
15
|
+
"ai",
|
|
16
|
+
"orchestration",
|
|
17
|
+
"automation",
|
|
18
|
+
"api",
|
|
19
|
+
"infrastructure"
|
|
20
|
+
],
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "0nORK",
|
|
23
|
+
"email": "hello@0nork.com",
|
|
24
|
+
"url": "https://0nork.com"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/0nork/0nork.git"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/0nork/0nork/issues"
|
|
33
|
+
},
|
|
34
|
+
"homepage": "https://0nork.com",
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"0nmcp": ">=1.0.0",
|
|
41
|
+
"0n-spec": ">=1.0.0"
|
|
42
|
+
},
|
|
43
|
+
"peerDependenciesMeta": {
|
|
44
|
+
"0nmcp": { "optional": true },
|
|
45
|
+
"0n-spec": { "optional": true }
|
|
46
|
+
}
|
|
47
|
+
}
|