@aman_asmuei/akit 0.1.0 → 0.1.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.
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
- acore (who it IS) + amem (what it KNOWS) + akit (what it CAN DO)
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** | Portable AI capabilities |
55
-
56
- Each works independently. Together they're a complete portable AI agent.
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
@@ -575,7 +575,7 @@ function doctorCommand() {
575
575
 
576
576
  // src/index.ts
577
577
  var program = new Command();
578
- program.name("akit").description("The portable capability layer for AI companions").version("0.1.0").action(() => {
578
+ program.name("akit").description("The portable capability layer for AI companions").version("0.1.1").action(() => {
579
579
  if (globalConfigExists()) {
580
580
  showCommand();
581
581
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aman_asmuei/akit",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "The portable capability layer for AI companions — give any AI tools that work everywhere",
5
5
  "type": "module",
6
6
  "bin": {