meerkat-agents 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0270f21d356660800f70b0e6e47a6c47bbd8978533748d150e9e7145d3ed8dbb
4
- data.tar.gz: 37afac9bf07c8bc93bb51e43a31fd2968c09742ccfbac506df3cae5a1f00eeb7
3
+ metadata.gz: 54ba46da11751ebb2b4dc36e5c02c9ef99add0b0507822637a7ad343f97498ff
4
+ data.tar.gz: edeb9fc5d5c08e3b44263460ace6591ebf81ec2187477cb69e2d0b1069df2925
5
5
  SHA512:
6
- metadata.gz: 6dda18ade21f2a9d99b49ebb30a64dbd4610012d40362f78469bbb2e9b269982f8b333a64068537e0c4321f5bcc79cc8133e13b9091bffbec4bfed7359854d5d
7
- data.tar.gz: 85640b0912fb3730bbbb24541c60b8aa4be13877250cc018661e968e68d8f12f59e0d1606383ab4fcb3f27a18d6cb75377910f7f9efe1e8d88254755c7446c69
6
+ metadata.gz: c6cad6d121752a4438682e854346b680781b916540cdf184b9556042326f865a4bda00ea3fa993010f59f6de762956dbe3be9d604a082f8cd202882ac6aa3bbf
7
+ data.tar.gz: 6addcf95c8bab0591ec242814960bb79e54e9b97043cc85888aea0ebf4fc0628a3a751db0cedc756d1645e9712200e1e0a3046362c92e3a479a4afcba13017b6
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.1.1] - 2026-06-27
9
+
10
+ ### Changed
11
+
12
+ - Expanded RubyGems description (Sidekiq-like background jobs, natural-language tasks, BYOK LLM providers)
13
+
8
14
  ## [0.1.0] - 2026-06-27
9
15
 
10
16
  ### Added
@@ -14,4 +20,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
20
  - Webhook HMAC-SHA256 verification helpers
15
21
  - Optional Rails railtie and webhook verification concern
16
22
 
23
+ [0.1.1]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.1.1
17
24
  [0.1.0]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.1.0
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Meerkat
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meerkat-agents
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tiny Bubble Company
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-27 00:00:00.000000000 Z
11
+ date: 2026-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -31,9 +31,13 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: '3'
33
33
  description: |
34
- Meerkat is an open-source, webhook-native API for async agent tasks. Monitor any website for changes,
35
- track shipments, watch competitor prices and stock, or schedule recurring scraping jobs and get an
36
- HMAC-signed webhook when something happens. BYOK, no schedulers or webhook plumbing to build yourself.
34
+ Meerkat is an open-source, webhook-native API for async agent tasks. Run background work similar to
35
+ Sidekiq register a job and walk away but describe the task in plain English and Meerkat understands
36
+ what to do and acts accordingly (fetch pages, extract data, compare state, retry on failure). Monitor
37
+ any website for changes, track shipments, watch competitor prices and stock, or schedule recurring
38
+ scraping jobs — and get an HMAC-signed webhook when something happens. Bring your own LLM key
39
+ (OpenAI, Anthropic, OpenRouter, Grok, or open-source models via compatible providers) — no schedulers
40
+ or webhook plumbing to build yourself.
37
41
  email:
38
42
  - hello@meerkatagents.com
39
43
  executables: []