jinzd-ai-cli 0.4.217 → 0.4.218
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 +4 -2
- package/dist/{batch-YCOVKTXD.js → batch-7V7OTMUP.js} +2 -2
- package/dist/{chunk-WZ3VKLF3.js → chunk-5CA2TJ5F.js} +1 -1
- package/dist/{chunk-QAYOI57M.js → chunk-C2Z42DI5.js} +1 -1
- package/dist/{chunk-MGBMNCHG.js → chunk-GX3HSGJX.js} +452 -156
- package/dist/{chunk-OUAZOE5U.js → chunk-H2UIHGHH.js} +23 -22
- package/dist/{chunk-KOPUCJXM.js → chunk-L4UREAID.js} +3 -3
- package/dist/{chunk-SNJAOXFT.js → chunk-MWKE2TNS.js} +1 -1
- package/dist/{chunk-XJGEQIYS.js → chunk-NTCB7CMT.js} +1 -1
- package/dist/{chunk-524WZOKS.js → chunk-OUC75QCF.js} +1 -1
- package/dist/{chunk-WKOQ5CYC.js → chunk-P4VBLXKS.js} +1 -1
- package/dist/{chunk-VTH7BLXK.js → chunk-VGFTM3XT.js} +1 -1
- package/dist/{ci-52RZIYWB.js → ci-L6GH2WVC.js} +4 -4
- package/dist/{ci-format-73UXKE65.js → ci-format-WW7454AY.js} +2 -2
- package/dist/{constants-DIXAD35W.js → constants-NCTFSHDU.js} +1 -1
- package/dist/{doctor-cli-7GOQPULZ.js → doctor-cli-EWMFBP5Q.js} +4 -4
- package/dist/electron-server.js +575 -231
- package/dist/{hub-GIGBITZN.js → hub-CDL6T7CP.js} +1 -1
- package/dist/index.js +148 -46
- package/dist/{pr-KPQ5RPKB.js → pr-D6PEKEGK.js} +4 -4
- package/dist/{run-tests-K7QR5QN4.js → run-tests-NXVVKAK2.js} +1 -1
- package/dist/{run-tests-ZDSA3QES.js → run-tests-SWU2XEV7.js} +2 -2
- package/dist/{server-QT3SC2KI.js → server-LHYSS6CK.js} +85 -21
- package/dist/{server-22YF3U34.js → server-WUT7VYTD.js} +4 -4
- package/dist/{task-orchestrator-BHQQCVTY.js → task-orchestrator-C5AA2BI5.js} +4 -4
- package/dist/{usage-WZZFSFLM.js → usage-6ZUUJBI2.js} +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
- **MCP Server Mode** *(v0.4.84+)* — `aicli mcp-serve` reverses ai-cli into an MCP server (JSON-RPC 2.0 over stdio), exposing its 28 built-in tools (incl. `find_symbol` / `search_code` / `run_tests`) to Claude Desktop / Cursor / any MCP client. Opt-in destructive-tool allow, `--tools` whitelist, `--cwd` override
|
|
35
35
|
- **Session Sensitive-Data Redaction** *(v0.4.88+)* — unified redactor scrubs `password=` / `api_key` / bearer tokens / OpenAI-style keys from every message **before it hits disk**. Query text is redacted too, so secrets never reach embeddings or logs. `/security status` + `/security scan` to audit
|
|
36
36
|
- **Human-like Long-Term Memory** *(v0.4.89+, B4)* — semantic index over every past chat session + `recall_memory` AI tool + `/memory rebuild|refresh|status|recall` commands. AI is prompted to auto-recall when it sees "last time" / "之前" / ambiguous references. Reuses the same MiniLM embedder as semantic code search
|
|
37
|
-
- **Governed Persistent Memory** *(v0.4.217+)* — `save_memory` and `/memory add` write auditable `memory.jsonl` entries with id/scope/source/sensitivity/approval/expiry; low-risk entries auto-approve, sensitive entries stay pending until `/memory approve <id>`, and project-scoped memories only inject inside the same project
|
|
37
|
+
- **Governed Persistent Memory** *(v0.4.217+)* — `save_memory` and `/memory add` write auditable `memory.jsonl` entries with id/scope/source/sensitivity/approval/expiry; low-risk entries auto-approve, sensitive entries stay pending until `/memory approve <id>`, and project-scoped memories only inject inside the same project
|
|
38
|
+
- **Package Plugin Ecosystem** *(v0.4.218+)* — install shareable .aicli-plugin/plugin.json packages with skills, hooks, commands, MCP servers, agents, and permission hints; only trusted+enabled plugins load, hooks still require hook trust, and MCP/tools remain under permission profiles/network policy
|
|
38
39
|
- **Web UI Memory Panel** *(v0.4.90+, B4)* — new 🧠 Memory sidebar tab with semantic search across past chats; each hit has **➕ Inject** (quotes the snippet into the chat input as a markdown blockquote so you can review/edit before sending — no silent context injection) and **↗ Load** (jumps to source session). Bulk "Inject top 3" for recall bundles
|
|
39
40
|
- **Streaming Tool Use** — Real-time streaming of AI reasoning and tool calls as they happen
|
|
40
41
|
- **Sub-Agents** — Delegate complex subtasks to isolated child agents with independent tool loops
|
|
@@ -218,7 +219,8 @@ AI autonomously invokes these 27 tools during conversations:
|
|
|
218
219
|
| `/export` | Export session as Markdown or JSON |
|
|
219
220
|
| `/profile` | View/edit your identity (AI knows who you are across all providers) |
|
|
220
221
|
| `/config` | Open configuration wizard |
|
|
221
|
-
|
|
|
222
|
+
| /help | Show all available commands |
|
|
223
|
+
| /plugin | Install, trust, enable, disable, and inspect package plugins |
|
|
222
224
|
|
|
223
225
|
**Multi-line input**: Use `\` at end of line for continuation, or paste multi-line content directly (auto-detected and merged).
|
|
224
226
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
ConfigManager
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-P4VBLXKS.js";
|
|
5
5
|
import "./chunk-TZQHYZKT.js";
|
|
6
|
-
import "./chunk-
|
|
6
|
+
import "./chunk-NTCB7CMT.js";
|
|
7
7
|
import {
|
|
8
8
|
atomicWriteFileSync
|
|
9
9
|
} from "./chunk-IW3Q7AE5.js";
|