obsidian-agent-fleet 0.13.4 → 0.14.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/DISCORD_SETUP.md +101 -0
- package/README.md +44 -13
- package/package.json +4 -3
- package/plugin/main.js +114 -83
- package/plugin/manifest.json +1 -1
- package/plugin/styles.css +4 -5
package/plugin/manifest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "agent-fleet",
|
|
3
3
|
"name": "Agent Fleet",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.14.0",
|
|
5
5
|
"minAppVersion": "1.11.4",
|
|
6
6
|
"description": "File-backed AI agents with task scheduling, channels, memory, and MCP — running on Claude Code or OpenAI Codex, all as plain markdown.",
|
|
7
7
|
"author": "Denis Berekchiyan",
|
package/plugin/styles.css
CHANGED
|
@@ -2623,7 +2623,6 @@
|
|
|
2623
2623
|
font-size: 11px;
|
|
2624
2624
|
font-weight: 400;
|
|
2625
2625
|
color: var(--af-text-secondary);
|
|
2626
|
-
white-space: nowrap;
|
|
2627
2626
|
min-width: 220px;
|
|
2628
2627
|
max-width: 400px;
|
|
2629
2628
|
white-space: normal;
|
|
@@ -4057,7 +4056,7 @@
|
|
|
4057
4056
|
}
|
|
4058
4057
|
|
|
4059
4058
|
.af-mp-custom-input {
|
|
4060
|
-
font-family: var(--font-monospace,
|
|
4059
|
+
font-family: var(--font-monospace, SFMono-Regular, Menlo, monospace);
|
|
4061
4060
|
font-size: 12px;
|
|
4062
4061
|
}
|
|
4063
4062
|
|
|
@@ -4070,7 +4069,7 @@
|
|
|
4070
4069
|
* the model name breathes rather than hugging the textarea edge. */
|
|
4071
4070
|
padding: 6px 12px 0 calc(18px + 8px + 10px);
|
|
4072
4071
|
min-height: 12px;
|
|
4073
|
-
font-family: var(--font-monospace,
|
|
4072
|
+
font-family: var(--font-monospace, SFMono-Regular, Menlo, monospace);
|
|
4074
4073
|
font-size: 10px;
|
|
4075
4074
|
line-height: 1;
|
|
4076
4075
|
color: var(--af-text-faint);
|
|
@@ -4389,7 +4388,7 @@
|
|
|
4389
4388
|
.af-wk-scope {
|
|
4390
4389
|
font-size: 11px;
|
|
4391
4390
|
color: var(--af-text-secondary);
|
|
4392
|
-
font-family: var(--font-monospace,
|
|
4391
|
+
font-family: var(--font-monospace, SFMono-Regular, Menlo, monospace);
|
|
4393
4392
|
}
|
|
4394
4393
|
|
|
4395
4394
|
.af-wk-empty {
|
|
@@ -4456,7 +4455,7 @@
|
|
|
4456
4455
|
color: var(--af-text-secondary);
|
|
4457
4456
|
font-size: 12px;
|
|
4458
4457
|
margin: 4px 0 16px 0;
|
|
4459
|
-
font-family: var(--font-monospace,
|
|
4458
|
+
font-family: var(--font-monospace, SFMono-Regular, Menlo, monospace);
|
|
4460
4459
|
}
|
|
4461
4460
|
|
|
4462
4461
|
.af-wk-modal-footer {
|