htm 0.0.15 → 0.0.17
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/.envrc +1 -0
- data/CHANGELOG.md +67 -0
- data/README.md +97 -1592
- data/bin/htm_mcp +31 -0
- data/config/database.yml +7 -4
- data/docs/getting-started/installation.md +31 -11
- data/docs/guides/mcp-server.md +456 -21
- data/docs/multi_framework_support.md +2 -2
- data/examples/mcp_client.rb +2 -2
- data/examples/rails_app/.gitignore +2 -0
- data/examples/rails_app/Gemfile +22 -0
- data/examples/rails_app/Gemfile.lock +438 -0
- data/examples/rails_app/Procfile.dev +1 -0
- data/examples/rails_app/README.md +98 -0
- data/examples/rails_app/Rakefile +5 -0
- data/examples/rails_app/app/assets/stylesheets/application.css +83 -0
- data/examples/rails_app/app/assets/stylesheets/inter-font.css +6 -0
- data/examples/rails_app/app/controllers/application_controller.rb +19 -0
- data/examples/rails_app/app/controllers/dashboard_controller.rb +27 -0
- data/examples/rails_app/app/controllers/files_controller.rb +205 -0
- data/examples/rails_app/app/controllers/memories_controller.rb +102 -0
- data/examples/rails_app/app/controllers/robots_controller.rb +44 -0
- data/examples/rails_app/app/controllers/search_controller.rb +46 -0
- data/examples/rails_app/app/controllers/tags_controller.rb +30 -0
- data/examples/rails_app/app/javascript/application.js +4 -0
- data/examples/rails_app/app/javascript/controllers/application.js +9 -0
- data/examples/rails_app/app/javascript/controllers/index.js +6 -0
- data/examples/rails_app/app/views/dashboard/index.html.erb +123 -0
- data/examples/rails_app/app/views/files/index.html.erb +108 -0
- data/examples/rails_app/app/views/files/new.html.erb +321 -0
- data/examples/rails_app/app/views/files/show.html.erb +130 -0
- data/examples/rails_app/app/views/layouts/application.html.erb +124 -0
- data/examples/rails_app/app/views/memories/_memory_card.html.erb +51 -0
- data/examples/rails_app/app/views/memories/deleted.html.erb +62 -0
- data/examples/rails_app/app/views/memories/edit.html.erb +35 -0
- data/examples/rails_app/app/views/memories/index.html.erb +81 -0
- data/examples/rails_app/app/views/memories/new.html.erb +71 -0
- data/examples/rails_app/app/views/memories/show.html.erb +126 -0
- data/examples/rails_app/app/views/robots/index.html.erb +106 -0
- data/examples/rails_app/app/views/robots/new.html.erb +36 -0
- data/examples/rails_app/app/views/robots/show.html.erb +79 -0
- data/examples/rails_app/app/views/search/index.html.erb +184 -0
- data/examples/rails_app/app/views/shared/_navbar.html.erb +52 -0
- data/examples/rails_app/app/views/shared/_stat_card.html.erb +52 -0
- data/examples/rails_app/app/views/tags/index.html.erb +131 -0
- data/examples/rails_app/app/views/tags/show.html.erb +67 -0
- data/examples/rails_app/bin/dev +8 -0
- data/examples/rails_app/bin/rails +4 -0
- data/examples/rails_app/bin/rake +4 -0
- data/examples/rails_app/config/application.rb +33 -0
- data/examples/rails_app/config/boot.rb +5 -0
- data/examples/rails_app/config/database.yml +15 -0
- data/examples/rails_app/config/environment.rb +5 -0
- data/examples/rails_app/config/importmap.rb +7 -0
- data/examples/rails_app/config/routes.rb +38 -0
- data/examples/rails_app/config/tailwind.config.js +35 -0
- data/examples/rails_app/config.ru +5 -0
- data/examples/rails_app/log/.keep +0 -0
- data/examples/rails_app/tmp/local_secret.txt +1 -0
- data/lib/htm/active_record_config.rb +2 -5
- data/lib/htm/configuration.rb +35 -2
- data/lib/htm/database.rb +3 -6
- data/lib/htm/mcp/cli.rb +333 -0
- data/lib/htm/mcp/group_tools.rb +476 -0
- data/lib/htm/mcp/resources.rb +89 -0
- data/lib/htm/mcp/server.rb +98 -0
- data/lib/htm/mcp/tools.rb +488 -0
- data/lib/htm/models/file_source.rb +5 -3
- data/lib/htm/railtie.rb +0 -4
- data/lib/htm/tasks.rb +7 -4
- data/lib/htm/version.rb +1 -1
- data/lib/tasks/htm.rake +6 -9
- metadata +59 -4
- data/bin/htm_mcp.rb +0 -621
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: htm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dewayne VanHoozer
|
|
@@ -256,7 +256,7 @@ description: |
|
|
|
256
256
|
email:
|
|
257
257
|
- dvanhoozer@gmail.com
|
|
258
258
|
executables:
|
|
259
|
-
- htm_mcp
|
|
259
|
+
- htm_mcp
|
|
260
260
|
extensions: []
|
|
261
261
|
extra_rdoc_files: []
|
|
262
262
|
files:
|
|
@@ -290,7 +290,7 @@ files:
|
|
|
290
290
|
- README.md
|
|
291
291
|
- Rakefile
|
|
292
292
|
- SETUP.md
|
|
293
|
-
- bin/htm_mcp
|
|
293
|
+
- bin/htm_mcp
|
|
294
294
|
- config/database.yml
|
|
295
295
|
- db/migrate/00001_enable_extensions.rb
|
|
296
296
|
- db/migrate/00002_create_robots.rb
|
|
@@ -459,6 +459,56 @@ files:
|
|
|
459
459
|
- examples/example_app/app.rb
|
|
460
460
|
- examples/file_loader_usage.rb
|
|
461
461
|
- examples/mcp_client.rb
|
|
462
|
+
- examples/rails_app/.gitignore
|
|
463
|
+
- examples/rails_app/Gemfile
|
|
464
|
+
- examples/rails_app/Gemfile.lock
|
|
465
|
+
- examples/rails_app/Procfile.dev
|
|
466
|
+
- examples/rails_app/README.md
|
|
467
|
+
- examples/rails_app/Rakefile
|
|
468
|
+
- examples/rails_app/app/assets/stylesheets/application.css
|
|
469
|
+
- examples/rails_app/app/assets/stylesheets/inter-font.css
|
|
470
|
+
- examples/rails_app/app/controllers/application_controller.rb
|
|
471
|
+
- examples/rails_app/app/controllers/dashboard_controller.rb
|
|
472
|
+
- examples/rails_app/app/controllers/files_controller.rb
|
|
473
|
+
- examples/rails_app/app/controllers/memories_controller.rb
|
|
474
|
+
- examples/rails_app/app/controllers/robots_controller.rb
|
|
475
|
+
- examples/rails_app/app/controllers/search_controller.rb
|
|
476
|
+
- examples/rails_app/app/controllers/tags_controller.rb
|
|
477
|
+
- examples/rails_app/app/javascript/application.js
|
|
478
|
+
- examples/rails_app/app/javascript/controllers/application.js
|
|
479
|
+
- examples/rails_app/app/javascript/controllers/index.js
|
|
480
|
+
- examples/rails_app/app/views/dashboard/index.html.erb
|
|
481
|
+
- examples/rails_app/app/views/files/index.html.erb
|
|
482
|
+
- examples/rails_app/app/views/files/new.html.erb
|
|
483
|
+
- examples/rails_app/app/views/files/show.html.erb
|
|
484
|
+
- examples/rails_app/app/views/layouts/application.html.erb
|
|
485
|
+
- examples/rails_app/app/views/memories/_memory_card.html.erb
|
|
486
|
+
- examples/rails_app/app/views/memories/deleted.html.erb
|
|
487
|
+
- examples/rails_app/app/views/memories/edit.html.erb
|
|
488
|
+
- examples/rails_app/app/views/memories/index.html.erb
|
|
489
|
+
- examples/rails_app/app/views/memories/new.html.erb
|
|
490
|
+
- examples/rails_app/app/views/memories/show.html.erb
|
|
491
|
+
- examples/rails_app/app/views/robots/index.html.erb
|
|
492
|
+
- examples/rails_app/app/views/robots/new.html.erb
|
|
493
|
+
- examples/rails_app/app/views/robots/show.html.erb
|
|
494
|
+
- examples/rails_app/app/views/search/index.html.erb
|
|
495
|
+
- examples/rails_app/app/views/shared/_navbar.html.erb
|
|
496
|
+
- examples/rails_app/app/views/shared/_stat_card.html.erb
|
|
497
|
+
- examples/rails_app/app/views/tags/index.html.erb
|
|
498
|
+
- examples/rails_app/app/views/tags/show.html.erb
|
|
499
|
+
- examples/rails_app/bin/dev
|
|
500
|
+
- examples/rails_app/bin/rails
|
|
501
|
+
- examples/rails_app/bin/rake
|
|
502
|
+
- examples/rails_app/config.ru
|
|
503
|
+
- examples/rails_app/config/application.rb
|
|
504
|
+
- examples/rails_app/config/boot.rb
|
|
505
|
+
- examples/rails_app/config/database.yml
|
|
506
|
+
- examples/rails_app/config/environment.rb
|
|
507
|
+
- examples/rails_app/config/importmap.rb
|
|
508
|
+
- examples/rails_app/config/routes.rb
|
|
509
|
+
- examples/rails_app/config/tailwind.config.js
|
|
510
|
+
- examples/rails_app/log/.keep
|
|
511
|
+
- examples/rails_app/tmp/local_secret.txt
|
|
462
512
|
- examples/robot_groups/multi_process.rb
|
|
463
513
|
- examples/robot_groups/robot_worker.rb
|
|
464
514
|
- examples/robot_groups/same_process.rb
|
|
@@ -492,6 +542,11 @@ files:
|
|
|
492
542
|
- lib/htm/long_term_memory/robot_operations.rb
|
|
493
543
|
- lib/htm/long_term_memory/tag_operations.rb
|
|
494
544
|
- lib/htm/long_term_memory/vector_search.rb
|
|
545
|
+
- lib/htm/mcp/cli.rb
|
|
546
|
+
- lib/htm/mcp/group_tools.rb
|
|
547
|
+
- lib/htm/mcp/resources.rb
|
|
548
|
+
- lib/htm/mcp/server.rb
|
|
549
|
+
- lib/htm/mcp/tools.rb
|
|
495
550
|
- lib/htm/models/file_source.rb
|
|
496
551
|
- lib/htm/models/node.rb
|
|
497
552
|
- lib/htm/models/node_tag.rb
|
|
@@ -541,7 +596,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
541
596
|
- !ruby/object:Gem::Version
|
|
542
597
|
version: '0'
|
|
543
598
|
requirements: []
|
|
544
|
-
rubygems_version: 4.0.
|
|
599
|
+
rubygems_version: 4.0.1
|
|
545
600
|
specification_version: 4
|
|
546
601
|
summary: Hierarchical Temporal Memory for LLM robots
|
|
547
602
|
test_files: []
|