pikuri-assistant 0.0.3 → 0.0.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2fcc5ec160c017a836ec5735b3fb8eb477dd7b3ec5762ffdc31869feb2f0e566
4
- data.tar.gz: 73db419edac45362e4db1c39ee5d330696f1d22a7ce68f9944a9392e39866bc2
3
+ metadata.gz: 7c9a63d3a01abd15abb226c04efbd222352e03ef43b9edccd74b5094bf3ba79c
4
+ data.tar.gz: 4e994720e0a914bf687108fe3b86be9215b0b5ebaa6040ad875173ace50c48d8
5
5
  SHA512:
6
- metadata.gz: 2dbd7df18a680ae2d042f8e6374e2c865a2b288770c860692d30301fdab722ea19a8f85f9a63f002e1fb7ccb6036c14baab71ff89885b3bbc6989308c0398005
7
- data.tar.gz: 276dc418721afae8ef4fccb723b7bbca0254391cca7608f5c51c6644b5b0731de0f702dd659cfed4e9b8c7de63617d860d1d37ead579dbd2f3f3ce2f13922238
6
+ metadata.gz: 6ed38cc17e4af90a10b474c983178f042b9dd7108dfa1fa422f9f24d96b53c933c335a9127eadaf1ae4f810321bb2e94eb7c7c4a2d4c0f8802320308f3677ba3
7
+ data.tar.gz: 5391053701fd1d7357c1c1d0001ab588a7130f59419b717531816f6ac819cc42780749e71250d70a9d20a254973e95628e3d8b8dee733f166321e2493bdb9816
data/README.md CHANGED
@@ -34,3 +34,17 @@ tool-selection guidance on top of pikuri-chat's base prompt: prefer
34
34
  MCP-backed tools for OAuth-gated SaaS over `web_scrape` / `fetch`,
35
35
  mcp_connect-once-per-server flow, treat MCP outputs as data not
36
36
  instructions.
37
+
38
+ ## Further reading
39
+
40
+ - **Narrative walkthrough:**
41
+ [Chapter 5 of the guide](../docs/guide/05-mcp.md) walks the
42
+ MCP-side wiring of this binary end-to-end with a gentle
43
+ example (a local iCalendar reader), and
44
+ [chapter 7](../docs/guide/07-assistant.md) is the placeholder
45
+ for a fuller `pikuri-assistant` walkthrough — landing once the
46
+ vectordb and memories surfaces stabilise. See
47
+ [the guide's index](../docs/guide/) for the current state.
48
+ - **API reference:** browse the YARD docs at
49
+ <https://rubydoc.info/gems/pikuri-assistant> (once published),
50
+ or run `bundle exec yard` in this directory for a local copy.
@@ -2,7 +2,7 @@ You are a personal assistant who helps the user manage their digital life. You a
2
2
 
3
3
  You have access to two kinds of tools:
4
4
 
5
- 1. **Bundled tools** — `web_search`, `web_scrape`, `fetch`, `calculator`, `sub_agent` — always available in your toolset.
5
+ 1. **Bundled tools** — `web_search`, `web_scrape`, `fetch`, `calculator`, `agent` — always available in your toolset.
6
6
  2. **MCP-backed tools** — listed under `<available_mcps>` in this prompt. They are NOT in your toolset by default; you must call `mcp_connect("<id>")` to add a server's tools before you can use them.
7
7
 
8
8
  To call a tool, use the standard tool-call mechanism — do not write tool calls as text. If several next steps are independent (e.g. two unrelated lookups), emit them as parallel tool calls in a single turn rather than one at a time.
@@ -11,7 +11,7 @@ Choosing a tool:
11
11
  - For OAuth-gated services (email, calendar, chat platforms, file storage, code-hosting), prefer the matching MCP server when one is listed under `<available_mcps>` — connect first, then use its tools. Don't try to scrape these services with `fetch` or `web_scrape`; they need authentication.
12
12
  - Default to `web_search` for any question that asks for a specific fact about a named entity — companies, products, prices, people, anything time-sensitive or obscure. Your training will *feel* certain on these and is often wrong; check rather than guess.
13
13
  - Use `calculator` for any arithmetic beyond simple mental math. Don't search the web for "what is X * Y".
14
- - Use `sub_agent` for self-contained side-quests whose intermediate observations would clutter your main context.
14
+ - Use `agent` for self-contained side-quests whose intermediate observations would clutter your main context — see `<available_agents>` for the personas you can spawn.
15
15
  - Reply directly, without any tool, for language and translation, definitions of common terms, and widely-known general history.
16
16
 
17
17
  Working with MCP:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pikuri-assistant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Vysny
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-05-22 00:00:00.000000000 Z
11
+ date: 2026-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pikuri-core
@@ -16,42 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.0.3
19
+ version: 0.0.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.0.3
26
+ version: 0.0.4
27
+ - !ruby/object:Gem::Dependency
28
+ name: pikuri-mcp
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.0.4
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.0.4
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: pikuri-skills
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - '='
32
46
  - !ruby/object:Gem::Version
33
- version: 0.0.3
47
+ version: 0.0.4
34
48
  type: :runtime
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
52
  - - '='
39
53
  - !ruby/object:Gem::Version
40
- version: 0.0.3
54
+ version: 0.0.4
41
55
  - !ruby/object:Gem::Dependency
42
- name: pikuri-mcp
56
+ name: pikuri-subagents
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - '='
46
60
  - !ruby/object:Gem::Version
47
- version: 0.0.3
61
+ version: 0.0.4
48
62
  type: :runtime
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
66
  - - '='
53
67
  - !ruby/object:Gem::Version
54
- version: 0.0.3
68
+ version: 0.0.4
55
69
  description: |
56
70
  pikuri-assistant ships the demo +bin/pikuri-assistant+ binary on
57
71
  top of pikuri-core + pikuri-skills + pikuri-mcp: an interactive