cmdx 1.9.1 → 1.10.0
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/.cursor/prompts/llms.md +3 -13
- data/CHANGELOG.md +10 -0
- data/LLM.md +429 -376
- data/README.md +1 -1
- data/docs/basics/setup.md +17 -0
- data/docs/callbacks.md +1 -1
- data/docs/getting_started.md +13 -2
- data/docs/retries.md +121 -0
- data/docs/tips_and_tricks.md +2 -1
- data/examples/stoplight_circuit_breaker.md +36 -0
- data/lib/cmdx/configuration.rb +15 -0
- data/lib/cmdx/executor.rb +31 -14
- data/lib/cmdx/version.rb +1 -1
- data/mkdocs.yml +3 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 633480d8f6383d5a872cfb8769fdfecc13e97879a90b0c1804144c0f93c7a26d
|
|
4
|
+
data.tar.gz: 411eba7e1d4089cc1740de89cd1a1d5e05c1bf90235723019356fe827df8414c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8575a3967114e4140b62bd16f088160fcf350366aefd65ed49368fba9edf5ac4476d20f4e1f2f632e9b1fa2878501513c6580821d94a07c0de91ef092592f92f
|
|
7
|
+
data.tar.gz: 351c404c1e6aa52ec21c09de5d4c8360777150534cddeb35d5e3ff750bacea7ad7886f74eddf26961d4dccf22a80acbe9727048f8753b0685295bb6f0c436fdc
|
data/.cursor/prompts/llms.md
CHANGED
|
@@ -2,17 +2,7 @@ Process the following instructions in the order given:
|
|
|
2
2
|
|
|
3
3
|
1. Create an `LLM.md` file
|
|
4
4
|
2. Append all files within `docs/**/*.md` into @LLM.md
|
|
5
|
-
2a. Use order outlined
|
|
5
|
+
2a. Use order outlined under the nav key in @mkdocs.yml
|
|
6
6
|
2b. Process one file at a time faster performance and improved accuracy
|
|
7
|
-
2c.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
url: https://github.com/drexed/cmdx/blob/main/docs/callbacks.md
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
{{ chunk }}
|
|
15
|
-
|
|
16
|
-
---
|
|
17
|
-
|
|
18
|
-
```
|
|
7
|
+
2c. Exclude @index.md and @LLM.md files
|
|
8
|
+
2d. All URLs should be absolute
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [UNRELEASED]
|
|
8
8
|
|
|
9
|
+
## [1.10.0] - 2025-10-26
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Added `rollback` ability to undo on matching status
|
|
13
|
+
- Added documentation for retries
|
|
14
|
+
- Added Stoplight circuit breaker integration example
|
|
15
|
+
|
|
16
|
+
### Updated
|
|
17
|
+
- Updated `retry_jitter` option to support symbol, proc, and callables on top of fixed values
|
|
18
|
+
|
|
9
19
|
## [1.9.1] - 2025-10-22
|
|
10
20
|
|
|
11
21
|
### Added
|