@yemi33/minions 0.1.1545 → 0.1.1546
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.
- package/CHANGELOG.md +6 -3
- package/engine/github.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.1546 (2026-04-22)
|
|
4
|
+
|
|
5
|
+
### Other
|
|
6
|
+
- test(github): add unit tests for isGitHub, getRepoSlug, slug backoff helpers (#1742)
|
|
7
|
+
|
|
8
|
+
## 0.1.1544 (2026-04-21)
|
|
4
9
|
|
|
5
10
|
### Other
|
|
6
|
-
- test(consolidation): add unit tests for checkDuplicateHash, classifyToKnowledgeBase, consolidateInbox (#1739)
|
|
7
|
-
- test(llm): add unit tests for trackEngineUsage and isResumeSessionStillValid (#1738)
|
|
8
11
|
- test(meeting): add unit tests for meeting lifecycle functions (#1736)
|
|
9
12
|
|
|
10
13
|
## 0.1.1543 (2026-04-20)
|
package/engine/github.js
CHANGED
|
@@ -791,10 +791,14 @@ module.exports = {
|
|
|
791
791
|
isGhThrottled,
|
|
792
792
|
getGhThrottleState,
|
|
793
793
|
// Exported for testing
|
|
794
|
+
isGitHub,
|
|
795
|
+
getRepoSlug,
|
|
794
796
|
isSlugInBackoff,
|
|
795
797
|
recordSlugFailure,
|
|
796
798
|
resetSlugBackoff,
|
|
797
799
|
_ghPollBackoff,
|
|
798
800
|
_ghThrottle, // exported for testing
|
|
799
801
|
GH_MAX_BUFFER, // exported for testing
|
|
802
|
+
GH_POLL_BACKOFF_BASE_MS, // exported for testing
|
|
803
|
+
GH_POLL_BACKOFF_MAX_MS, // exported for testing
|
|
800
804
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1546",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|