obsidian-agent-fleet 0.15.0 → 0.16.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 +17 -2
- package/package.json +1 -1
- package/plugin/main.js +156 -169
- package/plugin/manifest.json +2 -2
- package/plugin/styles.css +190 -221
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Agent Fleet for Obsidian
|
|
2
2
|
|
|
3
|
-
**Turn
|
|
3
|
+
**Turn your vault into an AI command center.** Build and run autonomous AI agents on Claude Code or OpenAI Codex — schedule tasks, chat in real time, connect Slack, Telegram, and Discord, and hook into any MCP service. Every agent is markdown you own.
|
|
4
|
+
|
|
5
|
+
<p>
|
|
6
|
+
<a href="https://afleet.md"><img src="https://img.shields.io/badge/website-afleet.md-a78bfa" alt="Website"></a>
|
|
7
|
+
<a href="https://obsidian.md/plugins?id=agent-fleet"><img src="https://img.shields.io/badge/Obsidian-Community%20Plugin-8b7cf6" alt="Obsidian Community Plugin"></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/obsidian-agent-fleet"><img src="https://img.shields.io/npm/v/obsidian-agent-fleet?color=6366f1" alt="npm"></a>
|
|
9
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-8a8f98" alt="MIT License"></a>
|
|
10
|
+
</p>
|
|
4
11
|
|
|
5
12
|

|
|
6
13
|
|
|
@@ -42,7 +49,11 @@ Agent Fleet is an Obsidian plugin that lets you build, configure, and run AI age
|
|
|
42
49
|
|
|
43
50
|
### Install
|
|
44
51
|
|
|
45
|
-
**Via
|
|
52
|
+
**Via Obsidian (recommended):**
|
|
53
|
+
1. Settings → Community plugins → Browse → search **"Agent Fleet"** — or open the [plugin directory page](https://obsidian.md/plugins?id=agent-fleet)
|
|
54
|
+
2. Install, then enable Agent Fleet
|
|
55
|
+
|
|
56
|
+
**Via npm:**
|
|
46
57
|
```bash
|
|
47
58
|
npm install -g obsidian-agent-fleet
|
|
48
59
|
```
|
|
@@ -61,6 +72,8 @@ The installer automatically finds your Obsidian vaults and copies the plugin fil
|
|
|
61
72
|
|
|
62
73
|
### Requirements
|
|
63
74
|
|
|
75
|
+
Agent Fleet runs on the subscriptions you already pay for — no separate API bill required.
|
|
76
|
+
|
|
64
77
|
- **Obsidian** 1.11.4+ (desktop — macOS, Windows, Linux)
|
|
65
78
|
- **At least one CLI backend** — install whichever engine(s) your agents will use:
|
|
66
79
|
- **[Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code)** (default):
|
|
@@ -578,6 +591,8 @@ An autonomous periodic run — what an agent does on a schedule without user inp
|
|
|
578
591
|
|
|
579
592
|
## Links
|
|
580
593
|
|
|
594
|
+
- [Website](https://afleet.md)
|
|
595
|
+
- [Obsidian Plugin Directory](https://obsidian.md/plugins?id=agent-fleet)
|
|
581
596
|
- [Slack Setup Guide](SLACK_SETUP.md)
|
|
582
597
|
- [Discord Setup Guide](DISCORD_SETUP.md)
|
|
583
598
|
- [Releases](https://github.com/denberek/obsidian-agent-fleet/releases)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-agent-fleet",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "Obsidian plugin for file-backed AI agents, task scheduling, channels (Slack, Telegram, Discord), heartbeat, and interactive chat.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "plugin/main.js",
|