mirror of
https://github.com/blamouche/obsidian-any-ai-code.git
synced 2026-07-22 06:53:38 +00:00
Leads with a 3-step beginner path: install the plugin from Obsidian's Community plugins browser, install one AI coding CLI (Claude Code, Codex, opencode, Ollama) with copy-paste installers and official links, then open the panel. Reframes "Install in a Vault" so the community browser is the primary path. Docs only. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
40 lines
1 KiB
JSON
40 lines
1 KiB
JSON
{
|
|
"name": "any-ai-cli",
|
|
"version": "0.2.18",
|
|
"description": "Run an AI assistant CLI like Claude from a right sidebar terminal panel, with a customizable runtime list.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "node esbuild.config.mjs production",
|
|
"lint": "eslint main.ts runtime-utils.ts session-utils.ts \"tests/**/*.ts\"",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"claude",
|
|
"cli"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.17.30",
|
|
"@typescript-eslint/parser": "^8.59.0",
|
|
"builtin-modules": "^5.0.0",
|
|
"esbuild": "^0.25.3",
|
|
"eslint": "^9.39.4",
|
|
"eslint-plugin-obsidianmd": "^0.2.4",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^4.0.18",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"dependencies": {
|
|
"@xterm/addon-fit": "^0.11.0",
|
|
"@xterm/xterm": "^6.0.0",
|
|
"cron-parser": "^5.5.0",
|
|
"node-pty": "^1.1.0"
|
|
}
|
|
}
|