Berd help
Use this skill to help users operate, troubleshoot, and script Berd — the
desktop app — from a normal chat. Topics below point to references/ files;
read the one relevant to the user's question rather than guessing, and read
more than one if the question spans topics.
First Principles
- Before giving exact product instructions, try to verify the behavior from
available evidence. If source code is available, inspect it first. If
source code is not available, use visible app state, screenshots, error
messages, Doctor output, or
berdctl --help output.
- Do not invent UI paths, menu names, frontmatter fields, feature existence,
fallback workflows, or
berdctl commands/flags. If you cannot verify the
exact path, say that and ask for a screenshot, selected project/source
access, or the specific screen the user is on. For berdctl, verify
against --help rather than recalling flags from memory.
- Treat the current app behavior as the source of truth. Prefer evidence from
visible UI, runtime state, error messages, Doctor output, local files,
berdctl --help, and available source over memory or stale documentation.
- Give practical steps the user can try now. Keep the answer short unless the
problem needs a deeper diagnosis.
- Do not claim access to private GitHub source unless it is actually
available in the current environment.
- Berd changes fast. Prefer naming where to look (a file, a command's
--help, a visible settings section) over naming specific section names,
labels, flags, or IDs in this skill's own prose — those are exactly the
details most likely to move. When a reference file below does name
something specific, treat it as a hint of where to look, not a guarantee it
still matches current behavior; verify before repeating it to the user.
Scope
This skill is about Berd the app — not about any one harness running inside
a session (goose, claude-acp, codex-acp, copilot-acp, amp-acp,
cursor-agent). A question about the app around the harness (where a
setting lives, how a session started, how to export a chat, how to file a
Berd bug) is in scope. A question about a specific harness's own behavior,
output, or errors is not — treat that as harness-specific and say so rather
than guessing at harness internals.
What To Check
For how-to questions:
- Identify the feature area from the Topics list below and read that
reference file.
- If source is available, search for the feature's UI, command, hook, tests,
or i18n strings before answering.
- Use the app's current state when available: selected agent, project,
model, provider, active session, attached files, visible errors, or
screenshots.
- Explain the shortest path to the action, then mention important
constraints or gotchas. If a
berdctl command does the same thing faster
or more reliably than a click path, offer it — see
references/berdctl.md.
For troubleshooting:
- Ask for the exact error, screenshot, provider/model, project path, or
Doctor result when the symptoms are ambiguous.
- Suggest low-risk checks first: rerun, reconnect, verify settings, check
selected model/provider, restart the app, or run Doctor when relevant.
- Separate likely causes from confirmed causes.
- If the problem looks like a real app bug rather than user error, see
references/reporting-problems.md instead of guessing at a fix.
Topics
Read the matching reference file for a specific question. Read more than one
when a question spans topics (for example, an automation failure that might
be a provider problem needs both):
references/berdctl.md — the berdctl CLI, when to prefer it over UI steps
references/agents.md — agents/personas
references/skills.md — skills, source kinds, precedence
references/automations.md — automations
references/projects.md — projects and workspaces
references/sessions.md — sessions ("chat"), the right rail, files,
worktrees, terminal
references/ai-providers.md — provider connections and error causes
references/connections-and-extensions.md — connections vs. extensions
references/settings.md — settings structure and gotchas
references/reporting-problems.md — filing feedback or a bug
Working With Bundled Builder Skills
- If the user wants to create, edit, or inspect an agent/persona, use or
recommend the
agent-builder skill.
- If the user wants to create, edit, or inspect a reusable skill, use or
recommend the
skill-builder skill.
- Do not duplicate those workflows inside this skill or its references. This
skill helps users understand, troubleshoot, and drive the app around them.
Source Of Truth
When source code is available, use it to verify behavior — the reference
files above may lag actual behavior since Berd changes fast. Good places to
inspect include UI feature folders, Tauri commands, distro bundled skills,
settings views, berdctl command modules
(src/features/berdctl/commands/impl/), and tests. If source code is not
available, rely on current app context and --help output, and be
transparent about uncertainty.
1---2name: berd-help3description: Help with Berd the desktop app: how-to, troubleshooting, settings, agents, skills, automations, projects, sessions, providers, connections, feedback, or berdctl. Use for app questions, not harness-specific behavior.4---56# Berd help78Use this skill to help users operate, troubleshoot, and script Berd — the9desktop app — from a normal chat. Topics below point to `references/` files;10read the one relevant to the user's question rather than guessing, and read11more than one if the question spans topics.1213## First Principles1415- Before giving exact product instructions, try to verify the behavior from16 available evidence. If source code is available, inspect it first. If17 source code is not available, use visible app state, screenshots, error18 messages, Doctor output, or `berdctl --help` output.19- Do not invent UI paths, menu names, frontmatter fields, feature existence,20 fallback workflows, or `berdctl` commands/flags. If you cannot verify the21 exact path, say that and ask for a screenshot, selected project/source22 access, or the specific screen the user is on. For `berdctl`, verify23 against `--help` rather than recalling flags from memory.24- Treat the current app behavior as the source of truth. Prefer evidence from25 visible UI, runtime state, error messages, Doctor output, local files,26 `berdctl --help`, and available source over memory or stale documentation.27- Give practical steps the user can try now. Keep the answer short unless the28 problem needs a deeper diagnosis.29- Do not claim access to private GitHub source unless it is actually30 available in the current environment.31- Berd changes fast. Prefer naming *where to look* (a file, a command's32 `--help`, a visible settings section) over naming specific section names,33 labels, flags, or IDs in this skill's own prose — those are exactly the34 details most likely to move. When a reference file below does name35 something specific, treat it as a hint of where to look, not a guarantee it36 still matches current behavior; verify before repeating it to the user.3738## Scope3940This skill is about Berd the app — not about any one harness running inside41a session (`goose`, `claude-acp`, `codex-acp`, `copilot-acp`, `amp-acp`,42`cursor-agent`). A question about the app around the harness (where a43setting lives, how a session started, how to export a chat, how to file a44Berd bug) is in scope. A question about a specific harness's own behavior,45output, or errors is not — treat that as harness-specific and say so rather46than guessing at harness internals.4748## What To Check4950For how-to questions:5152- Identify the feature area from the Topics list below and read that53 reference file.54- If source is available, search for the feature's UI, command, hook, tests,55 or i18n strings before answering.56- Use the app's current state when available: selected agent, project,57 model, provider, active session, attached files, visible errors, or58 screenshots.59- Explain the shortest path to the action, then mention important60 constraints or gotchas. If a `berdctl` command does the same thing faster61 or more reliably than a click path, offer it — see62 `references/berdctl.md`.6364For troubleshooting:6566- Ask for the exact error, screenshot, provider/model, project path, or67 Doctor result when the symptoms are ambiguous.68- Suggest low-risk checks first: rerun, reconnect, verify settings, check69 selected model/provider, restart the app, or run Doctor when relevant.70- Separate likely causes from confirmed causes.71- If the problem looks like a real app bug rather than user error, see72 `references/reporting-problems.md` instead of guessing at a fix.7374## Topics7576Read the matching reference file for a specific question. Read more than one77when a question spans topics (for example, an automation failure that might78be a provider problem needs both):7980- `references/berdctl.md` — the berdctl CLI, when to prefer it over UI steps81- `references/agents.md` — agents/personas82- `references/skills.md` — skills, source kinds, precedence83- `references/automations.md` — automations84- `references/projects.md` — projects and workspaces85- `references/sessions.md` — sessions ("chat"), the right rail, files,86 worktrees, terminal87- `references/ai-providers.md` — provider connections and error causes88- `references/connections-and-extensions.md` — connections vs. extensions89- `references/settings.md` — settings structure and gotchas90- `references/reporting-problems.md` — filing feedback or a bug9192## Working With Bundled Builder Skills9394- If the user wants to create, edit, or inspect an agent/persona, use or95 recommend the `agent-builder` skill.96- If the user wants to create, edit, or inspect a reusable skill, use or97 recommend the `skill-builder` skill.98- Do not duplicate those workflows inside this skill or its references. This99 skill helps users understand, troubleshoot, and drive the app around them.100101## Source Of Truth102103When source code is available, use it to verify behavior — the reference104files above may lag actual behavior since Berd changes fast. Good places to105inspect include UI feature folders, Tauri commands, distro bundled skills,106settings views, `berdctl` command modules107(`src/features/berdctl/commands/impl/`), and tests. If source code is not108available, rely on current app context and `--help` output, and be109transparent about uncertainty.