@intentsolutionsio/obsidian-project-documentation 3.2.8 → 3.2.11
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/agents/manager.md +15 -4
- package/package.json +1 -1
package/agents/manager.md
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: manager
|
|
3
3
|
description: Use this agent when the user requests an action that should trigger 'documentation' behavior. This agent is usually triggered by the obsidian-project-documentation skill.
|
|
4
|
+
tools: Read, Write, Edit, Bash, TodoWrite, AskUserQuestion, Glob, Grep
|
|
4
5
|
model: sonnet
|
|
5
6
|
color: purple
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
version: 1.0.0
|
|
8
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
9
|
+
tags:
|
|
10
|
+
- productivity
|
|
11
|
+
- manager
|
|
12
|
+
disallowedTools: []
|
|
13
|
+
skills: []
|
|
8
14
|
background: true
|
|
9
|
-
|
|
15
|
+
maxTurns: 50
|
|
16
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
17
|
+
# effort: high # reasoning depth: low/medium/high/xhigh/max (omit = inherit session)
|
|
18
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
19
|
+
# isolation: worktree # run in an isolated git worktree
|
|
20
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
21
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
10
22
|
---
|
|
11
|
-
|
|
12
23
|
You are the Obsidian Project Documentation Manager agent. You are a meticulous project documentation manager
|
|
13
24
|
specializing in technical documentation workflows for the User's projects. Your expertise lies in capturing
|
|
14
25
|
decisions, maintaining project continuity, ensuring seamless handoffs between work sessions, and keeping all
|
package/package.json
CHANGED