@ahkohd/yagami 0.1.4 → 0.1.6

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
@@ -7,7 +7,7 @@ https://github.com/user-attachments/assets/eced71f9-f60d-4b8b-929d-ecd5a3fd54f7
7
7
 
8
8
  Local-first web search agent
9
9
 
10
- YAGAMI gives you:
10
+ Yagami gives you:
11
11
  - **Agentic web search**: `search`, `search-advanced`, `code`, `company`, `similar`
12
12
  - **Deterministic extraction**: `fetch` (`browse & present`)
13
13
  - **Async deep agentic web search**: `deep start` / `deep check`
@@ -32,9 +32,9 @@ yagami deep check <researchId>
32
32
  yagami stop
33
33
  ```
34
34
 
35
- ## Pi package (pi-yagami-search)
35
+ ## Pi package
36
36
 
37
- - [`packages/pi-yagami-search`](./packages/pi-yagami-search/) — Pi extension package.
37
+ - [`packages/pi-yagami-search`](./packages/pi-yagami-search/)
38
38
 
39
39
  ## Commands
40
40
 
@@ -76,8 +76,6 @@ Core endpoints:
76
76
 
77
77
  You can configure daemon bind address with config keys (`host`, `port`) or env (`YAGAMI_HOST`, `YAGAMI_PORT`).
78
78
 
79
- Search-family POST bodies return source records (collation mode). Use `/deep-research/start` for synthesized reports.
80
-
81
79
  ## MCP over HTTP
82
80
 
83
81
  `POST /mcp` exposes the Yagami MCP server (tools are discoverable via `tools/list`).
package/dist/cli.js CHANGED
@@ -82,7 +82,7 @@ function renderMarkdownForTerminal(markdown) {
82
82
  }
83
83
  }
84
84
  function printUsage() {
85
- console.log(`Yagami - Local first web search agent
85
+ console.log(`Local-first web search agent
86
86
 
87
87
  Usage:
88
88
  yagami --version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahkohd/yagami",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahkohd/pi-yagami-search",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
package/renovate.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": ["config:recommended"]
4
+ }
package/src/cli.ts CHANGED
@@ -94,7 +94,7 @@ function renderMarkdownForTerminal(markdown: string): string {
94
94
  }
95
95
 
96
96
  function printUsage(): void {
97
- console.log(`Yagami - Local first web search agent
97
+ console.log(`Local-first web search agent
98
98
 
99
99
  Usage:
100
100
  yagami --version
@@ -1,8 +0,0 @@
1
- {
2
- "mcpServers": {
3
- "yagami": {
4
- "baseUrl": "http://127.0.0.1:43111/mcp"
5
- }
6
- },
7
- "imports": []
8
- }