generated from nhcarrigan/template
e6e9f7ae59
## Summary A large productivity-focused feature branch delivering a suite of improvements across automation, project management, theming, performance, and documentation. ### Features - **Guided Project Workflow** (#189) — Four-phase workflow panel (Discuss → Plan → Execute → Verify) to keep projects structured from idea to completion - **Automated Task Loop** (#179) — Per-task conversation orchestration with wave-based parallel execution, blocked-task detection, and concurrency control - **Wave-Based Parallel Execution** (#191) — Tasks run in dependency-aware waves with configurable concurrency; independent tasks execute in parallel - **Auto-Commit After Task Completion** (#192) — Task Loop optionally commits after each completed task so progress is never lost - **PRD Creator** (#180) — AI-assisted PRD and task list panel that outputs `hikari-tasks.json` for the Task Loop to consume - **Project Context Panel** (#188) — Persistent `PROJECT.md`, `REQUIREMENTS.md`, `ROADMAP.md`, and `STATE.md` files injected into Claude's context automatically - **Codebase Mapper** (#190) — Generates a `CODEBASE.md` architectural summary so Claude always understands the project structure - **Community Preset Themes** (#181) — Six built-in community themes: Dracula, Catppuccin Mocha, Nord, Solarized Dark, Gruvbox Dark, and Rosé Pine - **In-App Changelog Panel** (#193) — Fetches release notes from GitHub at runtime and displays them inside the app - **Full Embedded Documentation** (#196) — Replaced the single-page help modal with a 12-page paginated docs browser featuring a sidebar TOC, prev/next navigation, keyboard navigation (arrow keys, `?` shortcut), and comprehensive coverage of every feature ### Performance & Fixes - **Lazy Loading & Virtualisation** (#194) — Virtual windowing for conversation history, markdown memoisation, and debounced search for smooth rendering of large sessions - **Ctrl+C Copy Fix** (#195) — `Ctrl+C` now copies selected text as expected; interrupt-Claude behaviour only fires when no text is selected ### UX - Back-to-workflow button in PRD Creator and Task Loop panels for easy navigation - Navigation icon cluster replaced with a single clean dropdown menu ## Closes Closes #179 Closes #180 Closes #181 Closes #188 Closes #189 Closes #190 Closes #191 Closes #192 Closes #193 Closes #194 Closes #195 Closes #196 --- ✨ This PR was created with help from Hikari~ 🌸 Reviewed-on: #197 Co-authored-by: Hikari <hikari@nhcarrigan.com> Co-committed-by: Hikari <hikari@nhcarrigan.com>
62 lines
2.4 KiB
Svelte
62 lines
2.4 KiB
Svelte
<h3 class="text-lg font-semibold text-[var(--text-primary)] mb-4">Getting Started</h3>
|
|
|
|
<div class="space-y-4 text-sm text-[var(--text-secondary)]">
|
|
<div>
|
|
<h4 class="font-medium text-[var(--text-primary)] mb-2">1. Enter your API key</h4>
|
|
<p>
|
|
Open Settings (<kbd class="kbd">Ctrl+,</kbd>) and paste your Anthropic API key. Keys are
|
|
stored locally on your device and never sent anywhere except the Anthropic API.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="font-medium text-[var(--text-primary)] mb-2">2. Set a working directory</h4>
|
|
<p>
|
|
Click the folder icon in the connection bar and choose the project directory you want Hikari
|
|
to work in. This gives her context for your files and project structure.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="font-medium text-[var(--text-primary)] mb-2">3. Connect</h4>
|
|
<p>
|
|
Click <strong>Connect</strong> to start a Claude Code session. The status indicator will turn green
|
|
when you're connected.
|
|
</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4 class="font-medium text-[var(--text-primary)] mb-2">4. Start chatting</h4>
|
|
<p>
|
|
Type a message and press <kbd class="kbd">Enter</kbd> (or <kbd class="kbd">Ctrl+Enter</kbd>)
|
|
to send. Hikari can read, write, and edit files; run terminal commands; search code; fetch web
|
|
content; and connect to external tools via MCP.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="pt-2 border-t border-[var(--border-color)]">
|
|
<h4 class="font-medium text-[var(--text-primary)] mb-2">Key Features</h4>
|
|
<ul class="space-y-1.5">
|
|
<li>🗂️ <strong>File Management</strong> — read, write, and edit files in your project</li>
|
|
<li>💻 <strong>Terminal Access</strong> — execute commands and run scripts</li>
|
|
<li>🔍 <strong>Code Search</strong> — find files and search through code</li>
|
|
<li>🌐 <strong>Web Access</strong> — fetch information from the web</li>
|
|
<li>📊 <strong>MCP Servers</strong> — connect external tools via Model Context Protocol</li>
|
|
<li>📁 <strong>Multi-tab Support</strong> — work on multiple conversations simultaneously</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
kbd.kbd {
|
|
display: inline-block;
|
|
padding: 0.1rem 0.35rem;
|
|
font-size: 0.75rem;
|
|
font-family: monospace;
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 3px;
|
|
color: var(--text-primary);
|
|
}
|
|
</style>
|