hob 0.0.1

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 (5) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +11 -0
  3. data/lib/hob/version.rb +3 -0
  4. data/lib/hob.rb +9 -0
  5. metadata +46 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: adeb503b2afc0458621df93b6538cd97227dc4af50a39a68937072c65425d0ad
4
+ data.tar.gz: 4cae6e26d241f08d76d2b1091c89b33a007ffcd269adb3d3512b57b2f85b2588
5
+ SHA512:
6
+ metadata.gz: e02d09577ddd780b6b6eeb24264be493b876cc06cee2631417cc3e96f4dd942a66e9e6c4a23547d944d239eb426961885f6eb53a1485da868dcb82048ab864fb
7
+ data.tar.gz: 1c4d84d8a87d769b853907b17821df7fff18f6c2cb7d872e410a407e1fcb8e665fe58962c8f345dd2572e83e46b0763875ea746f1546af9ed3b497a860b04a0a
data/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # hob
2
+
3
+ *The household spirit that does the chores overnight, keeps the pots warm
4
+ beside the fire, and knows everything about the house — provided you leave
5
+ the milk out.*
6
+
7
+ hob is a personal LLM substrate: one backing service through which every LLM
8
+ interaction in a household flows. This gem is its Ruby client.
9
+
10
+ **Status:** 0.0.x releases reserve the name while v1 is built. Nothing to see
11
+ here yet — but the milk is out.
@@ -0,0 +1,3 @@
1
+ module Hob
2
+ VERSION = "0.0.1"
3
+ end
data/lib/hob.rb ADDED
@@ -0,0 +1,9 @@
1
+ require_relative "hob/version"
2
+
3
+ # hob — the household spirit that does the chores overnight, keeps the pots
4
+ # warm beside the fire, and knows everything about the house — provided you
5
+ # leave the milk out.
6
+ #
7
+ # This is a name-reservation release; the real client arrives with hob v1.
8
+ module Hob
9
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hob
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jenner
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: 'hob is the household spirit: one backing service through which every
13
+ LLM interaction flows — providers, conversations, personas, memory, tools, compute,
14
+ and voice. This gem is the Ruby client. 0.0.x releases are name reservations while
15
+ v1 is built.'
16
+ email:
17
+ - jenner@jfave.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - README.md
23
+ - lib/hob.rb
24
+ - lib/hob/version.rb
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ rubygems_mfa_required: 'true'
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '3.1'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 4.0.3
44
+ specification_version: 4
45
+ summary: Client for hob, a personal LLM substrate.
46
+ test_files: []