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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/meerkat/version.rb +1 -1
- metadata +9 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54ba46da11751ebb2b4dc36e5c02c9ef99add0b0507822637a7ad343f97498ff
|
|
4
|
+
data.tar.gz: edeb9fc5d5c08e3b44263460ace6591ebf81ec2187477cb69e2d0b1069df2925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/lib/meerkat/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
35
|
-
|
|
36
|
-
|
|
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: []
|