Skip to content

Commit 5695332

Browse files
Release v2.0.26
1 parent 1607fec commit 5695332

21 files changed

Lines changed: 99 additions & 99 deletions

File tree

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/Documentation/agents.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<img src="https://openanalyst.com/images/new-logo.png" alt="OA" >
1717
<h2>OpenAnalyst CLI</h2>
1818
</a>
19-
<span data-version-prefix="Documentation v">Documentation v2.0.24</span>
19+
<span data-version-prefix="Documentation v">Documentation v2.0.26</span>
2020
</div>
2121
<div class="sidebar-section">
2222
<div class="sidebar-section-title">Documentation</div>

docs/Documentation/architecture.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<img src="https://openanalyst.com/images/new-logo.png" alt="OA" >
1616
<h2>OpenAnalyst CLI</h2>
1717
</a>
18-
<span data-version-prefix="Documentation v">Documentation v2.0.24</span>
18+
<span data-version-prefix="Documentation v">Documentation v2.0.26</span>
1919
</div>
2020
<div class="sidebar-section">
2121
<div class="sidebar-section-title">Documentation</div>

docs/Documentation/authentication.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<img src="https://openanalyst.com/images/new-logo.png" alt="OA" >
1717
<h2>OpenAnalyst CLI</h2>
1818
</a>
19-
<span data-version-prefix="Documentation v">Documentation v2.0.24</span>
19+
<span data-version-prefix="Documentation v">Documentation v2.0.26</span>
2020
</div>
2121
<div class="sidebar-section">
2222
<div class="sidebar-section-title">Documentation</div>

docs/Documentation/commands.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<img src="https://openanalyst.com/images/new-logo.png" alt="OA" >
1717
<h2>OpenAnalyst CLI</h2>
1818
</a>
19-
<span data-version-prefix="Documentation v">Documentation v2.0.24</span>
19+
<span data-version-prefix="Documentation v">Documentation v2.0.26</span>
2020
</div>
2121
<div class="sidebar-section">
2222
<div class="sidebar-section-title">Documentation</div>

docs/Documentation/configuration.html

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<img src="https://openanalyst.com/images/new-logo.png" alt="OA" >
1818
<h2>OpenAnalyst CLI</h2>
1919
</a>
20-
<span data-version-prefix="Documentation v">Documentation v2.0.24</span>
20+
<span data-version-prefix="Documentation v">Documentation v2.0.26</span>
2121
</div>
2222
<div class="sidebar-section">
2323
<div class="sidebar-section-title">Documentation</div>
@@ -230,32 +230,32 @@ <h2 id="file-structure">File Structure</h2>
230230

231231
<h3>Project-Level (created via <code>/init</code>)</h3>
232232
<pre><code>project/
233-
├── OPENANALYST.md <span class="token-comment"># Project-specific AI instructions</span>
234-
├── OPENANALYST.local.md <span class="token-comment"># Personal project instructions (gitignored)</span>
235-
├── .openanalyst.json <span class="token-comment"># Shared project defaults</span>
236-
├── .openanalyst/
237-
├── settings.json <span class="token-comment"># Project-level settings</span>
238-
├── settings.local.json <span class="token-comment"># Machine-local overrides (gitignored)</span>
239-
├── .env <span class="token-comment"># Provider API keys (gitignored)</span>
240-
├── .mcp.json <span class="token-comment"># MCP server configuration</span>
241-
├── sessions/ <span class="token-comment"># Saved conversation sessions</span>
242-
├── skills/ <span class="token-comment"># Multi-file SKILL.md definitions</span>
243-
├── commands/ <span class="token-comment"># Simple slash commands</span>
244-
├── rules/ <span class="token-comment"># Path-specific instruction files</span>
245-
├── agents/ <span class="token-comment"># Custom subagent definitions</span>
246-
├── hooks/ <span class="token-comment"># Reusable hook scripts</span>
247-
└── output-styles/ <span class="token-comment"># Custom output formatting</span></code></pre>
233+
├── OPENANALYST.md <span class="token-comment"># Project-specific AI instructions</span>
234+
├── OPENANALYST.local.md <span class="token-comment"># Personal project instructions (gitignored)</span>
235+
├── .openanalyst.json <span class="token-comment"># Shared project defaults</span>
236+
├── .openanalyst/
237+
│ ├── settings.json <span class="token-comment"># Project-level settings</span>
238+
│ ├── settings.local.json <span class="token-comment"># Machine-local overrides (gitignored)</span>
239+
│ ├── .env <span class="token-comment"># Provider API keys (gitignored)</span>
240+
│ ├── .mcp.json <span class="token-comment"># MCP server configuration</span>
241+
│ ├── sessions/ <span class="token-comment"># Saved conversation sessions</span>
242+
│ ├── skills/ <span class="token-comment"># Multi-file SKILL.md definitions</span>
243+
│ ├── commands/ <span class="token-comment"># Simple slash commands</span>
244+
│ ├── rules/ <span class="token-comment"># Path-specific instruction files</span>
245+
│ ├── agents/ <span class="token-comment"># Custom subagent definitions</span>
246+
│ ├── hooks/ <span class="token-comment"># Reusable hook scripts</span>
247+
│ └── output-styles/ <span class="token-comment"># Custom output formatting</span></code></pre>
248248

249249
<h3>User-Level (all projects)</h3>
250250
<pre><code>~/.openanalyst/
251-
├── settings.json <span class="token-comment"># User-wide settings</span>
252-
├── .env <span class="token-comment"># Global API keys</span>
253-
├── credentials.json <span class="token-comment"># Saved provider credentials</span>
254-
├── skills/ <span class="token-comment"># User skills (available everywhere)</span>
255-
├── commands/ <span class="token-comment"># User slash commands</span>
256-
├── rules/ <span class="token-comment"># User rules</span>
257-
├── agents/ <span class="token-comment"># User agents</span>
258-
└── output-styles/ <span class="token-comment"># User output styles</span></code></pre>
251+
├── settings.json <span class="token-comment"># User-wide settings</span>
252+
├── .env <span class="token-comment"># Global API keys</span>
253+
├── credentials.json <span class="token-comment"># Saved provider credentials</span>
254+
├── skills/ <span class="token-comment"># User skills (available everywhere)</span>
255+
├── commands/ <span class="token-comment"># User slash commands</span>
256+
├── rules/ <span class="token-comment"># User rules</span>
257+
├── agents/ <span class="token-comment"># User agents</span>
258+
└── output-styles/ <span class="token-comment"># User output styles</span></code></pre>
259259

260260
<h3>3-Level Config Hierarchy</h3>
261261
<p>All configuration (rules, skills, agents, output-styles) loads from three levels, with later levels overriding earlier ones:</p>

0 commit comments

Comments
 (0)