@aman_asmuei/akit 0.1.1 → 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.
Files changed (2) hide show
  1. package/dist/index.js +14 -1
  2. package/package.json +1 -1
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.1.1").action(() => {
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aman_asmuei/akit",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "The portable capability layer for AI companions — give any AI tools that work everywhere",
5
5
  "type": "module",
6
6
  "bin": {