daycare-cli 0.0.1 → 0.0.2

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.
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "anthropic-fetch",
3
+ "name": "Anthropic Fetch",
4
+ "description": "Web fetch tool powered by Claude with URL content extraction.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "anthropic-search",
3
+ "name": "Anthropic Search",
4
+ "description": "Web search tool powered by Claude with web search.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "brave-search",
3
+ "name": "Brave Search",
4
+ "description": "Brave Search tool provider.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "database",
3
+ "name": "Database",
4
+ "description": "PGlite-backed database with markdown context.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "exa-ai",
3
+ "name": "Exa AI",
4
+ "description": "Web search tool powered by Exa AI.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "firecrawl",
3
+ "name": "Firecrawl",
4
+ "description": "Web fetch tool powered by Firecrawl.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "gemini-search",
3
+ "name": "Gemini Search",
4
+ "description": "Web search tool powered by Google Gemini with Search Grounding.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "memory",
3
+ "name": "Memory",
4
+ "description": "Structured memory entities stored as markdown.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "monty-python",
3
+ "name": "Monty Python",
4
+ "description": "Sandboxed Python execution using @pydantic/monty.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "nano-banana-pro",
3
+ "name": "Nano Banana Pro",
4
+ "description": "Nano Banana Pro image generation provider.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "openai-search",
3
+ "name": "OpenAI Search",
4
+ "description": "Web search tool powered by GPT with web search.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "perplexity-search",
3
+ "name": "Perplexity Search",
4
+ "description": "Web search tool powered by Perplexity AI.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "shell",
3
+ "name": "Shell",
4
+ "description": "Workspace file access, command execution, and durable process management tools.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "telegram",
3
+ "name": "Telegram",
4
+ "description": "Telegram connector and incoming message adapter.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "web-fetch",
3
+ "name": "Web Fetch",
4
+ "description": "Minimal web fetch tool that downloads URL content without JavaScript.",
5
+ "entry": "./plugin.js"
6
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "id": "whatsapp",
3
+ "name": "WhatsApp",
4
+ "description": "Connect to WhatsApp using Baileys (WhatsApp Web API)",
5
+ "entry": "./plugin.js"
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daycare-cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Local-first, plugin-driven multi-agent runtime",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  "node": ">=22"
35
35
  },
36
36
  "scripts": {
37
- "build": "tsc -p tsconfig.json && cp -r sources/prompts dist/ && cp -r sources/skills dist/skills",
37
+ "build": "tsc -p tsconfig.json && cp -r sources/prompts dist/ && cp -r sources/skills dist/skills && find sources/plugins -name 'plugin.json' -exec sh -c 'mkdir -p dist/plugins/$(basename $(dirname \"$1\")) && cp \"$1\" dist/plugins/$(basename $(dirname \"$1\"))/' _ {} \\;",
38
38
  "dev": "tsx sources/main.ts",
39
39
  "recipe": "tsx sources/recipe/recipeRun.ts",
40
40
  "test": "vitest run",