@mnemopay/toolkit 0.1.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 +17 -0
- package/README.md +62 -0
- package/package.json +54 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
Copyright 2026 J&B Enterprise LLC
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# @mnemopay/toolkit
|
|
2
|
+
|
|
3
|
+
The MnemoPay agent toolkit — the capability layer that pairs with `@mnemopay/sdk`'s portable trust layer. One install pulls in the runtime, the specialist agents, and the perception/action surface an autonomous agent needs to do work.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install @mnemopay/toolkit
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## What's in the box
|
|
10
|
+
|
|
11
|
+
| Category | Package | What it does |
|
|
12
|
+
|---|---|---|
|
|
13
|
+
| Runtime | `@kpanks/cli` | CLI runner — agent runtime entry point |
|
|
14
|
+
| Runtime | `@kpanks/api` | HTTP API server — `PraetorHTTP`, no Express |
|
|
15
|
+
| Runtime | `@kpanks/router` | Multi-LLM routing with prompt caching + Batch API |
|
|
16
|
+
| Runtime | `@kpanks/agents` | Agent orchestration core |
|
|
17
|
+
| Runtime | `@kpanks/sandbox` | Sandbox factory — Mock / Local / Docker (hardened) / Firecracker stub |
|
|
18
|
+
| Specialist | `@kpanks/coding-agent` | Coding agent — file/git/test tools + native unified-diff applier (16 tools) |
|
|
19
|
+
| Specialist | `@kpanks/research-agent` | Research agent — web search, source fetch, structured synthesis |
|
|
20
|
+
| Perception | `@kpanks/browser` | DOM-first browser automation (lazy `playwright-core`, Stagehand-shaped a11y outline) |
|
|
21
|
+
| Perception | `@kpanks/computer-control` | Computer-use session — audit + activity-bus streaming |
|
|
22
|
+
| Perception | `@kpanks/vision` | Native screen capture (PowerShell / `screencapture` / grim) + vision tools |
|
|
23
|
+
| Perception | `@kpanks/voice` | Native TTS — Kokoro 82M default + Azure Speech, license-family enforceable |
|
|
24
|
+
| Perception | `@kpanks/scrape` | Native fetch + SSRF guard + JSON-LD + sitemap + X.com syndication |
|
|
25
|
+
| Knowledge | `@kpanks/knowledge` | Knowledge base — vector + chunking |
|
|
26
|
+
| Knowledge | `@kpanks/tools` | Tool registry primitives |
|
|
27
|
+
|
|
28
|
+
## How it pairs with `@mnemopay/sdk`
|
|
29
|
+
|
|
30
|
+
`@mnemopay/sdk` is the **trust layer** — payments, memory, identity, Agent Credit Score (300–850), governance (FiscalGate, Article 12 audit bundles), and cross-rail portability. Every action your agent takes can be priced, signed, and audited.
|
|
31
|
+
|
|
32
|
+
`@mnemopay/toolkit` is the **capability layer** — what your agent uses to actually *do* things in the world.
|
|
33
|
+
|
|
34
|
+
You can use either alone or both together. Together they form the full MnemoPay agent platform.
|
|
35
|
+
|
|
36
|
+
```ts
|
|
37
|
+
import MnemoPay from "@mnemopay/sdk";
|
|
38
|
+
import { runMission } from "@mnemopay/sdk"; // governance
|
|
39
|
+
import { CodingAgent } from "@kpanks/coding-agent"; // capability
|
|
40
|
+
|
|
41
|
+
const agent = MnemoPay.quick("my-agent");
|
|
42
|
+
// ... charter + budget + tools, run via runMission
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## On the package names
|
|
46
|
+
|
|
47
|
+
The toolkit ships under `@mnemopay/toolkit` as a meta-package; the underlying capability packages remain published at `@kpanks/*` for backward compatibility. New code should depend on `@mnemopay/toolkit` to get the curated set; advanced users can install individual `@kpanks/*` packages directly.
|
|
48
|
+
|
|
49
|
+
## Status
|
|
50
|
+
|
|
51
|
+
- **v0.1.0** — initial meta-package release. Pulls in 14 `@kpanks/*` packages at `^0.1.0`.
|
|
52
|
+
- The Praetor brand the toolkit grew out of has been retired in favor of the unified MnemoPay platform; see [project_mnemopay_platform_2026_05_06] for the consolidation plan.
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
Apache-2.0. Built by J&B Enterprise LLC.
|
|
57
|
+
|
|
58
|
+
## Links
|
|
59
|
+
|
|
60
|
+
- **Site:** https://mnemopay.com/toolkit
|
|
61
|
+
- **SDK (trust layer):** https://www.npmjs.com/package/@mnemopay/sdk
|
|
62
|
+
- **GitHub (sub-packages):** https://github.com/mnemopay/praetor (legacy mono-repo, will sunset)
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mnemopay/toolkit",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MnemoPay agent toolkit — the capability layer (runtime, agents, browser, computer-control, vision, voice, scrape, knowledge, tools, coding-agent, research-agent) that pairs with @mnemopay/sdk's portable trust layer. One install for the full agent stack.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"agent-runtime",
|
|
7
|
+
"agent-toolkit",
|
|
8
|
+
"ai-agents",
|
|
9
|
+
"mnemopay",
|
|
10
|
+
"browser-automation",
|
|
11
|
+
"coding-agent",
|
|
12
|
+
"research-agent",
|
|
13
|
+
"tts",
|
|
14
|
+
"computer-use",
|
|
15
|
+
"agent-framework"
|
|
16
|
+
],
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"author": "J&B Enterprise LLC",
|
|
19
|
+
"homepage": "https://mnemopay.com/toolkit",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/mnemopay/toolkit.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/mnemopay/toolkit/issues"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"README.md",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"package.json"
|
|
31
|
+
],
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@kpanks/agents": "^0.1.0",
|
|
34
|
+
"@kpanks/api": "^0.1.0",
|
|
35
|
+
"@kpanks/browser": "^0.1.0",
|
|
36
|
+
"@kpanks/cli": "^0.1.0",
|
|
37
|
+
"@kpanks/coding-agent": "^0.1.0",
|
|
38
|
+
"@kpanks/computer-control": "^0.1.0",
|
|
39
|
+
"@kpanks/knowledge": "^0.1.0",
|
|
40
|
+
"@kpanks/research-agent": "^0.1.0",
|
|
41
|
+
"@kpanks/router": "^0.1.0",
|
|
42
|
+
"@kpanks/sandbox": "^0.1.0",
|
|
43
|
+
"@kpanks/scrape": "^0.1.0",
|
|
44
|
+
"@kpanks/tools": "^0.1.0",
|
|
45
|
+
"@kpanks/vision": "^0.1.0",
|
|
46
|
+
"@kpanks/voice": "^0.1.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"@mnemopay/sdk": "^1.5.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"@mnemopay/sdk": { "optional": true }
|
|
53
|
+
}
|
|
54
|
+
}
|