Agent instructions, skills, SSH host aliases and expansion triggers are worth having identical on every machine one person owns, and belong in none of the shared configuration. They live in user/ now, with a manifest saying where each piece goes and a link-user stage that puts it there. That stage does nothing unless the machine said yes. Somebody who clones Panama to try the desktop keeps their own ~/.claude/CLAUDE.md exactly where it was; the question names the destinations and defaults to no. Anything displaced goes to config/old rather than being deleted. ~/.claude/CLAUDE.md and ~/.codex/AGENTS.md were byte-identical copies of one file, which is the drift this exists to prevent. Also adds the vitals toggles for the battery and Claude usage readouts, which had preferences and no way to reach them.
56 lines
926 B
Markdown
56 lines
926 B
Markdown
---
|
|
name: vscode-extension
|
|
description: Manage slides visually in VS Code
|
|
---
|
|
|
|
# VS Code Extension
|
|
|
|
Manage slides visually in VS Code.
|
|
|
|
## Installation
|
|
|
|
Install from VS Code Marketplace: `antfu.slidev`
|
|
|
|
## Features
|
|
|
|
- Preview slides in side panel
|
|
- Slides tree view
|
|
- Drag and drop to reorder slides
|
|
- Folding for slide blocks
|
|
- Multiple project support
|
|
- One-click dev server start
|
|
|
|
## Usage
|
|
|
|
1. Click `Slidev` icon in activity bar
|
|
2. Projects tree shows all Slidev projects in workspace
|
|
3. Slides tree shows slides in active project
|
|
4. Preview panel shows live preview
|
|
|
|
## Commands
|
|
|
|
Type `Slidev` in command palette to see available commands.
|
|
|
|
## Configuration
|
|
|
|
Include specific files as Slidev entries:
|
|
|
|
```json
|
|
{
|
|
"slidev.include": ["**/presentation.md"]
|
|
}
|
|
```
|
|
|
|
Custom dev command:
|
|
|
|
```json
|
|
{
|
|
"slidev.dev-command": "pnpm slidev ${args}"
|
|
}
|
|
```
|
|
|
|
## Placeholders
|
|
|
|
- `${args}` - All CLI arguments
|
|
- `${port}` - Port number
|