Skip to main content
Walk through the essential Symbiotic Code workflows.

Best practices

How to prompt

The quality of the agent’s response depends directly on how clearly you communicate your intent. A few principles:
  • Be specific about the goal: say what you want to achieve, not just what to do
  • Name the files or areas involved: the agent searches your codebase, but pointing it in the right direction saves time and tokens
  • Declare constraints upfront: mention language versions, frameworks, or coding standards before they become a problem
  • One task at a time: break complex requests into focused steps rather than asking for everything at once

Don't

-> Too vague: no file, no context, no constraints.

Do

-> Clear filepath, explicit problems, clear expected behavior.

Provide rich content

There are multiple ways to provide more context to your prompts and get better results:
  • Reference and include specific files from your project with @ instead of describing where code is.
  • Paste URLs for documentation and API references.
  • Paste images directly. Copy/paste or drag and drop images into the prompt. This can be useful to show UI designs or error screenshots.
Results may vary depending on which models you use.

Agents

Symbiotic Code has 4 agents. Switch between them with Tab or the /agents command.
Start in Plan agent when working in an unfamiliar codebase, and then switch to Build once you have a clear plan.
Learn more about agents

Command palette

Press Ctrl+P or type / to open the command palette. Full command reference

Add a Skill

Skills are reusable instruction sets that the agent loads on demand. You install one by creating a SKILL.md file in the right place.
1

Create the skill file

Place your skill in one of these locations:
Each SKILL.md starts with YAML frontmatter:
2

Use it in a session

Type /skills in the command palette to load available skills, or simply reference it in your prompt:
Learn more about skills

Add an MCP server

MCPs allow Symbiotic Code to connect to external data sources (e.g. local files, databases), tools (e.g. search engines, calculators) and workflows (e.g. specialized prompts).
Each MCP server adds to the context window. Keep only what you actively use to avoid performance and security overhead.
1

Add it to your config file

Open (or create) symbiotic.jsonc at your project root or ~/.config/symbiotic/symbiotic.jsonc for a global setup:
symbiotic.jsonc
2

Restart Symbiotic Code

Relaunch Symbiotic Code. Use /mcp to confirm the server is connected and enabled.
3

Reference it in your prompt

Call out the MCP by its config name:
Full MCP documentation

Add a plugin

Plugins let you hook into Symbiotic Code’s events and extend or modify its behavior. There are two ways to load them: Option 1 — Local file Drop a .js or .ts file into the plugin directory:
Files in these directories are loaded automatically at startup. Option 2 — npm package Add the package name to your config file:
symbiotic.json
npm plugins are installed automatically via Bun on next launch. Full plugin documentation

Next steps

Use Cases

See Symbiotic Code in action with real security-focused scenarios.

MCP Servers

Full reference for local and remote MCP configuration.

Skills

Write and distribute reusable agent instruction sets.

Plugins

Extend Symbiotic Code with hooks and custom behavior.

Agents

Understand Build, Plan, Ask, and Debug agents in depth.

Models & Providers

Configure which AI model and provider you use.