pikuri-mcp 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: 3b512b9e2c5bacf829cee8104a9198b36d94d7d09b110060e7524e5e82ae70a0
4
- data.tar.gz: c36e458112d63a32ca0dad35c3b0ab4b07cd934347b7bfd4fe488ac252ccd64c
3
+ metadata.gz: c066dca9ef2c73cfa77613804066d2ca86db07a798d879f62d0b48c82906f677
4
+ data.tar.gz: 396a24732a4a023760f7c396e7c2a8bb9fd6274480f1f8bc4b823861cc4bfc24
5
5
  SHA512:
6
- metadata.gz: 89059a85a63a60cc2f69d64e881df7fb3fb005b64850040a5b696f4b4c6e862d28af77cb8e815f1a4bf259b3fd5ff720684c1a4fb5a16529c68596a7459ccd5e
7
- data.tar.gz: 5e31d7cc61ba3f802b2888d9078ba22de7fd132b82f2874e7daf483212de42b53aa608aa76e961bb69f44877acfa03871139acbba2caf594d7c128f95eeafa45
6
+ metadata.gz: 9356e92ffb908e79ae87217573b5cdd111665d2747dad2e9cd87fc31b07a335acb1aa75c747b515fb09a70bd89d5b665737998a9032bf70257aa29acea9ba5c7
7
+ data.tar.gz: 30e6add87c9b4d824b84e59d6abc62ee8911929aa7890124e4045a29340d2152f153419c60262824d6ae2409406d8c120e601d60113e21300b48a4588834c9d4
data/README.md CHANGED
@@ -52,3 +52,16 @@ the system prompt, and registers a close handler so the agent's
52
52
  per-agent `mcp_connect` tool — sub-agents share the live MCP clients
53
53
  via the same extension instance but each has its own connect tool +
54
54
  activation set.
55
+
56
+ ## Further reading
57
+
58
+ - **Narrative walkthrough:** [chapter 5 of the
59
+ guide](../docs/guide/05-mcp.md) is the gentle MCP intro — one
60
+ low-stakes server, no Docker, the verifier and synthesizer in
61
+ depth. [Chapter 10](../docs/guide/10-mcp-revisited.md) picks
62
+ the thread back up at the harder end: the official GitHub MCP
63
+ in Docker, npx- and pip-based community servers, Playwright,
64
+ and the full threat model.
65
+ - **API reference:** browse the YARD docs at
66
+ <https://rubydoc.info/gems/pikuri-mcp> (once published), or run
67
+ `bundle exec yard` in this directory for a local copy.
@@ -13,14 +13,14 @@ module Pikuri
13
13
  # == Configure / bind split
14
14
  #
15
15
  # +configure+ runs once on the parent's Configurator and creates
16
- # the *shared* {Mcp::Servers} runtime — that's the resource
17
- # extensions own. +bind+ fires per agent (parent + each
18
- # sub-agent in Step 4's world) and creates a *fresh* {Connect}
19
- # tool keyed to whichever agent is being bound, registered via
20
- # {Agent#internal_add_tool} so it lands only on that agent's
21
- # +RubyLLM::Chat+ (not in pikuri's +@tools+ list sub-agents
22
- # therefore don't inherit the parent's connect tool through the
23
- # snapshot, and each agent's activation Set stays per-agent).
16
+ # the *shared* {Mcp::Servers} runtime — that's the resource the
17
+ # extension owns. +bind+ fires once on the parent agent and
18
+ # installs a +Connect+ tool keyed to it, registered via
19
+ # {Agent#internal_add_tool} so the tool's +execute+ closure can
20
+ # call back into the right chat when the LLM activates a server.
21
+ # Sub-agents do not inherit extensions, so they receive neither
22
+ # the +Connect+ tool nor any MCP-backed tools personas own
23
+ # their toolset by construction.
24
24
  #
25
25
  # == Usage
26
26
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pikuri-mcp
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,14 +16,14 @@ 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
27
  - !ruby/object:Gem::Dependency
28
28
  name: mcp
29
29
  requirement: !ruby/object:Gem::Requirement