obsidian-agent-fleet 0.3.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 +367 -0
- package/bin/cli.js +125 -0
- package/package.json +31 -0
- package/plugin/main.js +20761 -0
- package/plugin/manifest.json +10 -0
- package/plugin/styles.css +3911 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "agent-fleet",
|
|
3
|
+
"name": "Agent Fleet",
|
|
4
|
+
"version": "0.3.0",
|
|
5
|
+
"minAppVersion": "1.6.0",
|
|
6
|
+
"description": "File-backed AI agents, task scheduling, and inbox monitoring inside Obsidian.",
|
|
7
|
+
"author": "Denis Berekchiyan",
|
|
8
|
+
"authorUrl": "https://github.com/denberek",
|
|
9
|
+
"isDesktopOnly": true
|
|
10
|
+
}
|