minionsai 0.1.10 → 0.1.12
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/README.md +3 -3
- package/dist/server/client/dist/assets/{highlighted-body-TPN3WLV5-HRhMRluo.js → highlighted-body-TPN3WLV5-BPjQA7_7.js} +1 -1
- package/dist/server/client/dist/assets/index-Bd3SZe0C.js +742 -0
- package/dist/server/client/dist/assets/index-DSgQHigG.css +1 -0
- package/dist/server/client/dist/index.html +2 -2
- package/dist/server/client/dist/sounds/done.mp3 +0 -0
- package/dist/server/server/adapters/hermes-worker.d.ts +25 -15
- package/dist/server/server/adapters/hermes-worker.js +88 -39
- package/dist/server/server/adapters/types.d.ts +24 -14
- package/dist/server/server/adapters/worker-protocol.d.ts +65 -28
- package/dist/server/server/app.js +2 -2
- package/dist/server/server/live-chat.d.ts +17 -2
- package/dist/server/server/live-chat.js +97 -26
- package/dist/server/server/prompts/task-agent.d.ts +1 -1
- package/dist/server/server/prompts/task-agent.js +2 -2
- package/dist/server/server/routes/chat.js +195 -48
- package/dist/server/server/routes/{routines.d.ts → scheduled-tasks.d.ts} +1 -1
- package/dist/server/server/routes/{routines.js → scheduled-tasks.js} +49 -49
- package/dist/server/server/scheduled-tasks/runs.d.ts +3 -0
- package/dist/server/server/{routines → scheduled-tasks}/runs.js +7 -7
- package/dist/server/server/workers/{hermes_routines.py → hermes_scheduled_tasks.py} +42 -42
- package/dist/server/server/workers/hermes_worker.py +209 -68
- package/dist/server/server/workers/hermes_worker_utils.py +1 -1
- package/dist/server/shared/types.d.ts +46 -14
- package/dist/server/shared/types.js +1 -0
- package/package.json +2 -1
- package/dist/server/client/dist/assets/index-B5ntI_p0.css +0 -1
- package/dist/server/client/dist/assets/index-I3kvScuz.js +0 -727
- package/dist/server/server/routines/runs.d.ts +0 -3
package/README.md
CHANGED
|
@@ -36,11 +36,11 @@ The Settings page also shows the version of the running Minions server.
|
|
|
36
36
|
|
|
37
37
|
- **Kanban board**: see every task at a glance: in progress, in review, done
|
|
38
38
|
- **Autonomous execution**: describe what you want in chat, walk away; the agent decides how to get it done
|
|
39
|
-
- **
|
|
39
|
+
- **Automatic review queue**: successful agent runs move cards to ready for review
|
|
40
40
|
- **Live streaming**: watch tool calls, reasoning, and responses in real time
|
|
41
41
|
- **Human-in-the-loop**: agents propose completion; you verify and close. Nothing moves to done without your sign-off
|
|
42
42
|
- **Per-task model control**: override model and reasoning effort on any task
|
|
43
|
-
- **
|
|
43
|
+
- **Scheduled Tasks**: create and manage recurring Hermes jobs, history, and output
|
|
44
44
|
- **File browser**: see files agents have created in the workspace directory
|
|
45
45
|
- **Local-first option**: self-host with SQLite, no account, and no cloud dependency. Your local data stays on your machine
|
|
46
46
|
|
|
@@ -56,7 +56,7 @@ Each task is a persistent Hermes root session. You talk to it, it works, and the
|
|
|
56
56
|
|
|
57
57
|
## Roadmap
|
|
58
58
|
|
|
59
|
-
- **
|
|
59
|
+
- **Scheduled task supervision**: automatically monitor, recover, and report on scheduled agent jobs
|
|
60
60
|
- **Notifications**: get alerted via Telegram, WhatsApp, or webhook when a task needs review
|
|
61
61
|
- **Skills library**: pluggable skill templates for common workflows (lead gen, web research, content pipelines, data collection, competitive monitoring, outbound sequences)
|
|
62
62
|
- **OpenClaw adapter**: run Minions against OpenClaw-hosted agents
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r,R as m,M as x,j as d,B as p}from"./index-
|
|
1
|
+
import{r,R as m,M as x,j as d,B as p}from"./index-Bd3SZe0C.js";var B=({code:i,language:e,raw:a,className:g,startLine:u,...n})=>{let{shikiTheme:l}=r.useContext(m),t=x(),[h,s]=r.useState(a);return r.useEffect(()=>{if(!t){s(a);return}let o=t.highlight({code:i,language:e,themes:l},c=>{s(c)});o&&s(o)},[i,e,l,t,a]),d.jsx(p,{className:g,language:e,result:h,startLine:u,...n})};export{B as HighlightedCodeBlockBody};
|