daemora 1.0.14 → 2026.1.0-beta.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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/agents/systemPrompt.js +16 -8
- package/daemora-ui/README.md +0 -11
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Daemora
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="public/banner.png" alt="Daemora — Autonomous AI Agent" width="100%" />
|
|
4
|
+
<img src="https://raw.githubusercontent.com/CodeAndCanvasLabs/Daemora/main/public/banner.png" alt="Daemora — Autonomous AI Agent" width="100%" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daemora",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "2026.1.0-beta.0",
|
|
4
4
|
"description": "A powerful open-source AI agent that runs on your machine. Connects to any AI model, any MCP server, any channel. Fully autonomous - plans, codes, tests, browses, emails, and manages your tools without asking permission.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -438,15 +438,23 @@ You are a sub-agent spawned for a specific task. Complete it fully without askin
|
|
|
438
438
|
}
|
|
439
439
|
|
|
440
440
|
function renderRuntime(meta = {}) {
|
|
441
|
+
const now = new Date();
|
|
442
|
+
const date = now.toISOString().split("T")[0];
|
|
443
|
+
const time = now.toTimeString().split(" ")[0];
|
|
444
|
+
const year = now.getFullYear();
|
|
441
445
|
const parts = [];
|
|
442
|
-
if (meta.model) parts.push(`
|
|
443
|
-
if (meta.thinkingLevel) parts.push(`
|
|
444
|
-
if (meta.agentId) parts.push(`
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
446
|
+
if (meta.model) parts.push(`Model: ${meta.model}`);
|
|
447
|
+
if (meta.thinkingLevel) parts.push(`Thinking: ${meta.thinkingLevel}`);
|
|
448
|
+
if (meta.agentId) parts.push(`Agent: ${meta.agentId}`);
|
|
449
|
+
return `# Environment
|
|
450
|
+
|
|
451
|
+
- Current Date: ${date}
|
|
452
|
+
- Current Time: ${time}
|
|
453
|
+
- Current Year: ${year}
|
|
454
|
+
- OS: ${process.platform}/${process.arch}
|
|
455
|
+
- Shell: ${process.env.SHELL || "unknown"}
|
|
456
|
+
- CWD: ${process.cwd()}
|
|
457
|
+
${parts.length > 0 ? parts.map(p => `- ${p}`).join("\n") + "\n" : ""}`;
|
|
450
458
|
}
|
|
451
459
|
|
|
452
460
|
export const systemPrompt = { role: "system", content: "" };
|
package/daemora-ui/README.md
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
# Implement Feature Request
|
|
3
|
-
|
|
4
|
-
This is a code bundle for Implement Feature Request. The original project is available at https://www.figma.com/design/xnKTW8JzkdqWcg3WN6thQX/Implement-Feature-Request.
|
|
5
|
-
|
|
6
|
-
## Running the code
|
|
7
|
-
|
|
8
|
-
Run `npm i` to install the dependencies.
|
|
9
|
-
|
|
10
|
-
Run `npm run dev` to start the development server.
|
|
11
|
-
|