agent-tome 1.0.1 → 1.0.2
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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/agent/tome/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1fbc39a213cb029fa3095a2716194d056372b7b46cb9aeb108658cbbeb371f7
|
|
4
|
+
data.tar.gz: b428bfa0a59dc8458c4e8d40753cdc5f97fc4cbf9545f68b5a816539570bc90c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f81e6f87f3f00dbab2259211ce10ed0bd0bca7cf84891f08e314df5c4ed4c8e5cfde181b3e6a430625157911d394e5222450460080f45587f213bfc5d6d4da26
|
|
7
|
+
data.tar.gz: 317cbc98e8a99f2f596262b6ecdabe935854a8dba82413ef3e1bca4e436b2cf1e005d8b8200c28c8f88753b3397146d010249f625a6855e4cfb85b9e763deb53
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [1.0.2] - 2026-09-20
|
|
4
|
+
|
|
5
|
+
### Documentation
|
|
6
|
+
|
|
7
|
+
- The Quick Start showed `create` returning a `global_id`. It returns
|
|
8
|
+
`article_global_id` and `entry_global_id`, so an agent written against the
|
|
9
|
+
README was reading a key that is never there.
|
|
10
|
+
|
|
11
|
+
### Internal
|
|
12
|
+
|
|
13
|
+
- The CLI test lane (`TOME_DRIVER=cli`) had rotted and nothing ran it. It runs
|
|
14
|
+
again, and `rake` now runs both it and the in-process lane, so the executable
|
|
15
|
+
is covered rather than only the service objects underneath it.
|
|
16
|
+
- Development dependencies move to minitest 6, which extracts `minitest/mock`
|
|
17
|
+
into its own gem, plus current activerecord, activesupport and sqlite3.
|
|
18
|
+
|
|
3
19
|
## [1.0.1] - 2026-04-05
|
|
4
20
|
|
|
5
21
|
### Changed
|
data/README.md
CHANGED
|
@@ -17,7 +17,7 @@ On first run, a config directory is created at `~/.agent-tome/` with a SQLite da
|
|
|
17
17
|
```bash
|
|
18
18
|
# Your agent just researched Ruby GC internals. Capture what it learned:
|
|
19
19
|
echo '{"description": "Ruby GC internals", "body": "Ruby uses a generational mark-and-sweep garbage collector.", "keywords": ["ruby", "garbage-collection"]}' | agent-tome create
|
|
20
|
-
# => {"
|
|
20
|
+
# => {"article_global_id": "3xK9mWp", "entry_global_id": "VwY75ct", ...}
|
|
21
21
|
|
|
22
22
|
# Two weeks later, a different session hits the same topic.
|
|
23
23
|
# Instead of re-reading the docs, your agent checks the tome:
|
data/lib/agent/tome/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agent-tome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Erik T. Madsen
|
|
@@ -107,6 +107,10 @@ licenses:
|
|
|
107
107
|
metadata:
|
|
108
108
|
homepage_uri: https://github.com/beatmadsen/agent-tome
|
|
109
109
|
changelog_uri: https://github.com/beatmadsen/agent-tome/blob/main/CHANGELOG.md
|
|
110
|
+
source_code_uri: https://github.com/beatmadsen/agent-tome
|
|
111
|
+
bug_tracker_uri: https://github.com/beatmadsen/agent-tome/issues
|
|
112
|
+
documentation_uri: https://github.com/beatmadsen/agent-tome#readme
|
|
113
|
+
rubygems_mfa_required: 'true'
|
|
110
114
|
rdoc_options: []
|
|
111
115
|
require_paths:
|
|
112
116
|
- lib
|
|
@@ -121,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
125
|
- !ruby/object:Gem::Version
|
|
122
126
|
version: '0'
|
|
123
127
|
requirements: []
|
|
124
|
-
rubygems_version: 4.0.
|
|
128
|
+
rubygems_version: 4.0.9
|
|
125
129
|
specification_version: 4
|
|
126
130
|
summary: Build a personal encyclopedia of accumulated knowledge, designed for AI agents.
|
|
127
131
|
test_files: []
|