pikuri-memory 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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +24 -0
  3. data/lib/pikuri-memory.rb +7 -0
  4. metadata +57 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 581dae8d71aa150fc2769102a425803cba247124ef488ea0f30e23e9a94417bf
4
+ data.tar.gz: 722400c572d3edaaa8ee01d295f10897ce4cda925440277061aeb87b528a8f35
5
+ SHA512:
6
+ metadata.gz: 47a9f2c1264fb2b65c71f806c07f21b364731735efad02b7db4da5268cc598ae6a37e6bdfd8c40c9b602d0d077373420b821cf71b2cf9930983ba3714b09568c
7
+ data.tar.gz: 7196d65414e7345508b5a061a9f00a55fc664bf12fc14aac60e77adaf2c6a75ca4d8de8d496b7d1e887185001d3d370ac0c344b9e058454231fd1cafe5bd9fee
data/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # pikuri-memory
2
+
3
+ Placeholder gem reserving the `pikuri-memory` name on RubyGems
4
+ for an upcoming "memories" extension to the
5
+ [pikuri](https://codeberg.org/mvysny/pikuri) AI-assistant toolkit.
6
+
7
+ There is no Ruby code in this gem yet — `require 'pikuri-memory'`
8
+ is intentionally a no-op. The eventual extension will give a
9
+ pikuri-core agent durable long-lived facts about the user and the
10
+ project that persist across conversations, modeled after the
11
+ memory concept in
12
+ [hermes-agent](https://github.com/nousresearch/hermes-agent).
13
+
14
+ ## Install
15
+
16
+ ```ruby
17
+ # Gemfile
18
+ gem 'pikuri-memory'
19
+ ```
20
+
21
+ The gem currently has no runtime dependencies and contributes no
22
+ tools, extensions, or constants. Track the
23
+ [pikuri changelog](https://codeberg.org/mvysny/pikuri) for the
24
+ first real release.
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Entry file for the pikuri-memory gem. The gem ships no library
4
+ # code yet — this release only reserves the +pikuri-memory+ name
5
+ # on RubyGems for an upcoming "memories" extension. +require
6
+ # 'pikuri-memory'+ is intentionally a no-op until the extension
7
+ # lands.
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pikuri-memory
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
5
+ platform: ruby
6
+ authors:
7
+ - Martin Vysny
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-05-29 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ pikuri-memory is a placeholder gem reserving the
15
+ +pikuri-memory+ name on RubyGems for an upcoming "memories"
16
+ extension to pikuri — durable long-lived facts about the user
17
+ and the project that persist across conversations, modeled
18
+ after the memory concept in
19
+ https://github.com/nousresearch/hermes-agent. The gem ships
20
+ no Ruby code yet; this release only claims the name so the
21
+ eventual extension can publish under it.
22
+ email:
23
+ - martin@vysny.me
24
+ executables: []
25
+ extensions: []
26
+ extra_rdoc_files: []
27
+ files:
28
+ - README.md
29
+ - lib/pikuri-memory.rb
30
+ homepage: https://codeberg.org/mvysny/pikuri
31
+ licenses:
32
+ - MIT
33
+ metadata:
34
+ source_code_uri: https://codeberg.org/mvysny/pikuri/src/branch/master
35
+ changelog_uri: https://codeberg.org/mvysny/pikuri/src/branch/master/CHANGELOG.md
36
+ bug_tracker_uri: https://codeberg.org/mvysny/pikuri/issues
37
+ rubygems_mfa_required: 'true'
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '3.3'
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubygems_version: 3.5.22
54
+ signing_key:
55
+ specification_version: 4
56
+ summary: Name reservation for an upcoming pikuri memory extension.
57
+ test_files: []