Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jcode-mimir",
"version": "0.4.7",
"version": "0.4.8",
"private": true,
"description": "Monorepo for the Mimir open-source local RAG packages.",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/mimir-tts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcode.labs/mimir-tts",
"version": "0.4.7",
"version": "0.4.8",
"description": "Plug-and-play Edge-quality and offline text-to-speech for Mimir audio summaries.",
"type": "module",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion packages/mimir/dist/doctor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mimir/dist/doctor.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mimir/dist/version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const VERSION = "0.4.7";
export declare const VERSION = "0.4.8";
//# sourceMappingURL=version.d.ts.map
2 changes: 1 addition & 1 deletion packages/mimir/dist/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mimir/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcode.labs/mimir",
"version": "0.4.7",
"version": "0.4.8",
"description": "Mimir: open-source sovereign local RAG for confidential datasets and AI agents.",
"type": "module",
"license": "MIT",
Expand Down
5 changes: 4 additions & 1 deletion packages/mimir/src/doctor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ function nextActions(input: NextActionInput): string[] {
`Run \`${input.run(["ask", '"your question"'])}\` to produce cited retrieval context.`,
)
if (input.agentKitInstalled) {
steps.push("Connect an AI with .mimir/mcp.json or load .mimir/skills/mimir/.")
steps.push(
"Connect Claude Code with .mimir/claude-mcp-server.json, Codex with .mimir/codex-mcp.toml, or another AI with .mimir/mcp.json.",
)
steps.push("Load .mimir/skills/mimir/ in agents that support skill folders.")
} else {
steps.push(
`Run \`${input.run(["install-skill"])}\` if an AI agent should use the local knowledge base.`,
Expand Down
6 changes: 6 additions & 0 deletions packages/mimir/src/setup.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,11 @@ describe("setupProject", () => {
expect(first.ingested).toBeNull()
expect(second.ingested?.indexedFiles).toBe(1)
expect(second.doctor.ready).toBe(true)
expect(second.doctor.nextSteps).toContain(
"Connect Claude Code with .mimir/claude-mcp-server.json, Codex with .mimir/codex-mcp.toml, or another AI with .mimir/mcp.json.",
)
expect(second.nextSteps).toContain(
"Connect Claude Code with .mimir/claude-mcp-server.json, Codex with .mimir/codex-mcp.toml, or another AI with .mimir/mcp.json.",
)
})
})
2 changes: 1 addition & 1 deletion packages/mimir/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.4.7"
export const VERSION = "0.4.8"
Loading