mistri 0.2.0 → 0.2.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/README.md +7 -2
- data/lib/mistri/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e553e955f2a1263afed1b26889dbf04773916dbd6f33f9229e6db2b729dd655b
|
|
4
|
+
data.tar.gz: 98b95079d9f91b068580ac2708c362b1317452378eba99fe7643e301660ad89d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb690580fe35c2226bfa0d86d23f77c9236e8dcb10ba3af0a7753a1d52b96c11e951d41ee647d0cf947dae1d3c82ca834105070099dec0c4bac728bcd296698b
|
|
7
|
+
data.tar.gz: 9e5be1a7fde00c351abc5f123ddfa82db8cb0ae34f14b0c6aa474b12338c587958c547d68e70280de7cda780ea4e674953e0f28681d33c17b37edd8ea1672d8e
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.2.1] - 2026-07-05
|
|
9
|
+
|
|
10
|
+
- The gem homepage and documentation links now point at
|
|
11
|
+
[mistri.sh](https://mistri.sh), the project site with full docs at
|
|
12
|
+
[mistri.sh/docs](https://mistri.sh/docs/getting-started/).
|
|
13
|
+
- README polish: wordmark, testing section.
|
|
14
|
+
|
|
8
15
|
## [0.2.0] - 2026-07-05
|
|
9
16
|
|
|
10
17
|
- Repository hygiene: coverage floor enforced in CI (simplecov, 90% line),
|
data/README.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
<
|
|
1
|
+
<p align="center">
|
|
2
|
+
<picture>
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="assets/logo-dark.svg">
|
|
4
|
+
<img src="assets/logo-light.svg" alt="مستری" width="360">
|
|
5
|
+
</picture>
|
|
6
|
+
</p>
|
|
2
7
|
|
|
3
8
|
<p align="center"><strong>mistri</strong>, the agent harness for Ruby applications.</p>
|
|
4
9
|
|
|
@@ -343,7 +348,7 @@ Mistri.agent("gpt-5.5", provider_options: { reasoning: { effort: "high" } })
|
|
|
343
348
|
Mistri.agent("claude-opus-4-8", provider_options: { cache: false })
|
|
344
349
|
```
|
|
345
350
|
|
|
346
|
-
##
|
|
351
|
+
## Testing
|
|
347
352
|
|
|
348
353
|
`rake test` is hermetic and fast. `rake integration` runs every feature end
|
|
349
354
|
to end against real provider APIs, once per model in the matrix. Scenarios
|
data/lib/mistri/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mistri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Muhammad Ahmed Cheema
|
|
@@ -91,14 +91,14 @@ files:
|
|
|
91
91
|
- lib/mistri/workspace/directory.rb
|
|
92
92
|
- lib/mistri/workspace/memory.rb
|
|
93
93
|
- lib/mistri/workspace/single.rb
|
|
94
|
-
homepage: https://
|
|
94
|
+
homepage: https://mistri.sh
|
|
95
95
|
licenses:
|
|
96
96
|
- MIT
|
|
97
97
|
metadata:
|
|
98
98
|
source_code_uri: https://github.com/mcheemaa/mistri
|
|
99
99
|
changelog_uri: https://github.com/mcheemaa/mistri/blob/main/CHANGELOG.md
|
|
100
100
|
rubygems_mfa_required: 'true'
|
|
101
|
-
documentation_uri: https://
|
|
101
|
+
documentation_uri: https://mistri.sh/docs/getting-started/
|
|
102
102
|
bug_tracker_uri: https://github.com/mcheemaa/mistri/issues
|
|
103
103
|
rdoc_options: []
|
|
104
104
|
require_paths:
|