@aman_asmuei/akit 0.1.0 → 0.2.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/README.md +15 -5
- package/dist/index.js +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,16 +44,26 @@ Same command. Same file. Different capabilities based on platform.
|
|
|
44
44
|
## The Ecosystem
|
|
45
45
|
|
|
46
46
|
```
|
|
47
|
-
|
|
47
|
+
aman
|
|
48
|
+
├── acore → identity → who your AI IS
|
|
49
|
+
├── amem → memory → what your AI KNOWS
|
|
50
|
+
├── akit → tools → what your AI CAN DO
|
|
51
|
+
├── aflow → workflows → HOW your AI works
|
|
52
|
+
├── arules → guardrails → what your AI WON'T do
|
|
53
|
+
└── aeval → evaluation → how GOOD your AI is
|
|
48
54
|
```
|
|
49
55
|
|
|
50
56
|
| Layer | Package | What it does |
|
|
51
57
|
|:------|:--------|:-------------|
|
|
52
58
|
| Identity | [acore](https://github.com/amanasmuei/acore) | Personality, values, relationship memory |
|
|
53
|
-
| Memory | [amem](https://github.com/amanasmuei/amem) | Automated knowledge storage |
|
|
54
|
-
| Tools | **akit** |
|
|
55
|
-
|
|
56
|
-
|
|
59
|
+
| Memory | [amem](https://github.com/amanasmuei/amem) | Automated knowledge storage (MCP) |
|
|
60
|
+
| Tools | **akit** | 15 portable AI tools (MCP + manual fallback) |
|
|
61
|
+
| Workflows | [aflow](https://github.com/amanasmuei/aflow) | Reusable AI workflows (code review, bug fix, etc.) |
|
|
62
|
+
| Guardrails | [arules](https://github.com/amanasmuei/arules) | Safety boundaries and permissions |
|
|
63
|
+
| Evaluation | [aeval](https://github.com/amanasmuei/aeval) | Relationship tracking and session logging |
|
|
64
|
+
| **Unified** | **[aman](https://github.com/amanasmuei/aman)** | **One command to set up everything** |
|
|
65
|
+
|
|
66
|
+
Each works independently. `aman` is the front door.
|
|
57
67
|
|
|
58
68
|
---
|
|
59
69
|
|
package/dist/index.js
CHANGED
|
@@ -200,6 +200,19 @@ var REGISTRY = [
|
|
|
200
200
|
},
|
|
201
201
|
manual: "Suggest docker commands for user to run",
|
|
202
202
|
capabilities: ["containers", "images", "compose", "logs"]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
name: "docling",
|
|
206
|
+
description: "Convert documents (PDF, DOCX, PPTX, XLSX, HTML, images) to markdown with AI-powered layout understanding",
|
|
207
|
+
category: "documents",
|
|
208
|
+
mcp: {
|
|
209
|
+
package: "docling-mcp",
|
|
210
|
+
command: "uvx",
|
|
211
|
+
args: ["docling-mcp"]
|
|
212
|
+
},
|
|
213
|
+
manual: "Ask user to convert with: docling convert <file> --to md, then paste the output",
|
|
214
|
+
capabilities: ["PDF reading", "DOCX conversion", "table extraction", "OCR", "PPTX", "XLSX"],
|
|
215
|
+
envHint: "Requires Python 3.10+. Install: pip install docling"
|
|
203
216
|
}
|
|
204
217
|
];
|
|
205
218
|
function findTool(name) {
|
|
@@ -575,7 +588,7 @@ function doctorCommand() {
|
|
|
575
588
|
|
|
576
589
|
// src/index.ts
|
|
577
590
|
var program = new Command();
|
|
578
|
-
program.name("akit").description("The portable capability layer for AI companions").version("0.
|
|
591
|
+
program.name("akit").description("The portable capability layer for AI companions").version("0.2.0").action(() => {
|
|
579
592
|
if (globalConfigExists()) {
|
|
580
593
|
showCommand();
|
|
581
594
|
} else {
|