claude_memory 0.10.0 → 0.11.0
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/.claude/memory.sqlite3 +0 -0
- data/.claude-plugin/marketplace.json +1 -1
- data/.claude-plugin/plugin.json +1 -1
- data/CHANGELOG.md +44 -0
- data/CLAUDE.md +11 -3
- data/README.md +35 -1
- data/docs/1_0_punchlist.md +269 -88
- data/docs/GETTING_STARTED.md +3 -1
- data/docs/architecture.md +3 -3
- data/docs/dashboard.md +23 -3
- data/docs/improvements.md +190 -5
- data/docs/quality_review.md +35 -0
- data/lib/claude_memory/commands/digest_command.rb +95 -3
- data/lib/claude_memory/commands/hook_command.rb +27 -2
- data/lib/claude_memory/commands/initializers/hooks_configurator.rb +7 -4
- data/lib/claude_memory/commands/registry.rb +2 -1
- data/lib/claude_memory/commands/show_command.rb +90 -0
- data/lib/claude_memory/commands/stats_command.rb +94 -2
- data/lib/claude_memory/dashboard/trust.rb +180 -11
- data/lib/claude_memory/distill/bare_conclusion_detector.rb +71 -0
- data/lib/claude_memory/hook/handler.rb +142 -1
- data/lib/claude_memory/templates/hooks.example.json +5 -0
- data/lib/claude_memory/version.rb +1 -1
- data/lib/claude_memory.rb +2 -0
- metadata +3 -1
data/lib/claude_memory.rb
CHANGED
|
@@ -90,6 +90,7 @@ require_relative "claude_memory/dashboard/health"
|
|
|
90
90
|
require_relative "claude_memory/dashboard/api"
|
|
91
91
|
require_relative "claude_memory/dashboard/server"
|
|
92
92
|
require_relative "claude_memory/commands/digest_command"
|
|
93
|
+
require_relative "claude_memory/commands/show_command"
|
|
93
94
|
require_relative "claude_memory/commands/registry"
|
|
94
95
|
require_relative "claude_memory/cli"
|
|
95
96
|
require_relative "claude_memory/configuration"
|
|
@@ -97,6 +98,7 @@ require_relative "claude_memory/distill/distiller"
|
|
|
97
98
|
require_relative "claude_memory/distill/extraction"
|
|
98
99
|
require_relative "claude_memory/distill/null_distiller"
|
|
99
100
|
require_relative "claude_memory/distill/reference_material_detector"
|
|
101
|
+
require_relative "claude_memory/distill/bare_conclusion_detector"
|
|
100
102
|
require_relative "claude_memory/domain/fact"
|
|
101
103
|
require_relative "claude_memory/domain/entity"
|
|
102
104
|
require_relative "claude_memory/domain/provenance"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: claude_memory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Valentino Stoll
|
|
@@ -229,6 +229,7 @@ files:
|
|
|
229
229
|
- lib/claude_memory/commands/restore_command.rb
|
|
230
230
|
- lib/claude_memory/commands/search_command.rb
|
|
231
231
|
- lib/claude_memory/commands/serve_mcp_command.rb
|
|
232
|
+
- lib/claude_memory/commands/show_command.rb
|
|
232
233
|
- lib/claude_memory/commands/skills/distill-transcripts.md
|
|
233
234
|
- lib/claude_memory/commands/skills/memory-recall.md
|
|
234
235
|
- lib/claude_memory/commands/stats_command.rb
|
|
@@ -270,6 +271,7 @@ files:
|
|
|
270
271
|
- lib/claude_memory/dashboard/server.rb
|
|
271
272
|
- lib/claude_memory/dashboard/timeline.rb
|
|
272
273
|
- lib/claude_memory/dashboard/trust.rb
|
|
274
|
+
- lib/claude_memory/distill/bare_conclusion_detector.rb
|
|
273
275
|
- lib/claude_memory/distill/distiller.rb
|
|
274
276
|
- lib/claude_memory/distill/extraction.rb
|
|
275
277
|
- lib/claude_memory/distill/json_schema.md
|