@yemi33/minions 0.1.2025 → 0.1.2026
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/engine/queries.js +15 -0
- package/package.json +1 -1
package/engine/queries.js
CHANGED
|
@@ -1907,6 +1907,21 @@ function getStatusFastStateMtimePaths(config) {
|
|
|
1907
1907
|
path.join(ENGINE_DIR, 'watches.json'),
|
|
1908
1908
|
// Central work-items.json surfaced by getWorkItems().
|
|
1909
1909
|
path.join(MINIONS_DIR, 'work-items.json'),
|
|
1910
|
+
// notes.md (surfaced by getNotesWithMeta) — consolidation writes this
|
|
1911
|
+
// when an inbox batch is processed. Single file, mtime advances on every
|
|
1912
|
+
// write. Without this, the dashboard's notes view sat stale for up to
|
|
1913
|
+
// FAST_STATE_TTL (10 s) after each consolidation cycle.
|
|
1914
|
+
NOTES_PATH,
|
|
1915
|
+
// notes/inbox/ (surfaced by getInbox) — every writeToInbox call CREATES
|
|
1916
|
+
// a new file (engine/shared.js#writeToInbox always uses a uid'd path,
|
|
1917
|
+
// never an in-place edit), so the directory's mtime is a reliable
|
|
1918
|
+
// entry-add/remove signal even on Windows NTFS. Without it, PR-comment
|
|
1919
|
+
// notifications, agent-failure summaries, follow-up build alerts, and
|
|
1920
|
+
// meeting-transcript dumps all lagged up to 10 s before appearing on
|
|
1921
|
+
// the dashboard's inbox view. The meeting directory is still excluded
|
|
1922
|
+
// (see "Files intentionally NOT tracked") because round transitions
|
|
1923
|
+
// edit existing files in-place, which dir mtime can't detect.
|
|
1924
|
+
INBOX_DIR,
|
|
1910
1925
|
];
|
|
1911
1926
|
// Per-project work-items (surfaced by getWorkItems) and pull-requests
|
|
1912
1927
|
// (surfaced by getPullRequests). The PR file was the biggest miss in the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2026",
|
|
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"
|