@ahkohd/yagami 0.1.5 → 0.1.7
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/.github/workflows/ci.yml +1 -1
- package/README.md +6 -8
- package/dist/cli.js +1 -1
- package/package.json +3 -3
- package/packages/pi-yagami-search/package.json +1 -1
- package/src/cli.ts +1 -1
package/.github/workflows/ci.yml
CHANGED
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
|
-
|
|
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
|
|
35
|
+
## Pi package
|
|
36
36
|
|
|
37
|
-
- [`packages/pi-yagami-search`](./packages/pi-yagami-search/)
|
|
37
|
+
- [`packages/pi-yagami-search`](./packages/pi-yagami-search/)
|
|
38
38
|
|
|
39
39
|
## Commands
|
|
40
40
|
|
|
@@ -76,15 +76,13 @@ 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`).
|
|
84
82
|
|
|
85
83
|
## Configuration
|
|
86
84
|
|
|
87
|
-
###
|
|
85
|
+
### Config file (recommended)
|
|
88
86
|
|
|
89
87
|
Default path: `~/.config/yagami/config.json` (or `$XDG_CONFIG_HOME/yagami/config.json`).
|
|
90
88
|
|
|
@@ -159,7 +157,7 @@ For a custom search endpoint template:
|
|
|
159
157
|
- `ui.<key>`: same keys as above under a `ui` object (merged over top-level)
|
|
160
158
|
- `colors` / `themeColors`: compatibility aliases for `themeTokens`
|
|
161
159
|
|
|
162
|
-
###
|
|
160
|
+
### Config CLI
|
|
163
161
|
|
|
164
162
|
```bash
|
|
165
163
|
yagami config path
|
|
@@ -175,7 +173,7 @@ yagami config set browseConcurrency 8 --json-value
|
|
|
175
173
|
yagami config unset themeTokens.domain
|
|
176
174
|
```
|
|
177
175
|
|
|
178
|
-
###
|
|
176
|
+
### Environment variables
|
|
179
177
|
|
|
180
178
|
- `YAGAMI_CONFIG_FILE` (default: `$YAGAMI_RUNTIME_DIR/config.json`)
|
|
181
179
|
- `YAGAMI_RUNTIME_DIR` (default: `$XDG_CONFIG_HOME/yagami` or `~/.config/yagami`)
|
package/dist/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ahkohd/yagami",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@lightpanda/browser": "^1.2.0",
|
|
51
|
-
"@mariozechner/pi-agent-core": "^0.
|
|
52
|
-
"@mariozechner/pi-ai": "^0.
|
|
51
|
+
"@mariozechner/pi-agent-core": "^0.65.0",
|
|
52
|
+
"@mariozechner/pi-ai": "^0.65.0",
|
|
53
53
|
"markdansi": "^0.2.1",
|
|
54
54
|
"defuddle": "^0.14.0",
|
|
55
55
|
"linkedom": "^0.18.12",
|
package/src/cli.ts
CHANGED