bekahhw/bekahhw-first-assistant icon
public
Published on 7/24/2025
My First Assistant

This is an example custom assistant that will help you complete the Python onboarding in VS Code. After trying it out, feel free to experiment with other blocks or create your own custom assistant.

Rules
Prompts
Models
Context
relace Relace Instant Apply model icon

Relace Instant Apply

relace

40kinput·32koutput
anthropic Claude 3.7 Sonnet model icon

Claude 3.7 Sonnet

anthropic

200kinput·8.192koutput
anthropic Claude 3.5 Haiku model icon

Claude 3.5 Haiku

anthropic

200kinput·8.192koutput
mistral Codestral model icon

Codestral

mistral

voyage Voyage AI rerank-2 model icon

Voyage AI rerank-2

voyage

voyage voyage-code-3 model icon

voyage-code-3

voyage

openai OpenAI GPT-4.1 model icon

OpenAI GPT-4.1

OpenAI

1047kinput·32.768koutput
openai OpenAI GPT-4o model icon

OpenAI GPT-4o

OpenAI

128kinput·16.384koutput
rules:
  - name: "Astro Frontmatter Rules"
    description: "Guidelines for writing valid Astro frontmatter in .astro files."
    content: |
      1. Always place frontmatter at the very top of the file.
      2. Use triple dashes (---) to open and close the block.
      3. Only one frontmatter block per .astro file.
      4. Use frontmatter for:
         - Imports
         - Declaring constants and variables
         - Exporting metadata with `export const`
         - Accessing Astro.props in components
         - Async data fetching (using await)
      5. Do NOT:
         - Use DOM APIs (document, window)
         - Add client-side scripts here
      6. Everything exported becomes available in the template:
         Example:
           ---
           export const title = "OSS Communities";
           ---
           <h1>{title}</h1>
      7. For components, destructure props from Astro.props:
         ---
         const { heading } = Astro.props;
         ---
      8. Keep heavy logic outside frontmatter (move to utility files).
# Accessibility Guidelines

- **Follow W3C’s Web Content Accessibility Guidelines (WCAG) 2.2** for all frontend code and UI implementations. 
- **Use semantic HTML** to structure content. Use proper elements for headings, lists, landmarks, tables, forms, etc., rather than divs or spans. 
- **Ensure sufficient color contrast** for text and important UI elements. Use color schemes that meet WCAG 2.2 contrast ratios (at least 4.5:1 for normal text). **Do not rely on color alone** to convey information — use icons, patterns, or text labels as needed in addition to color cues. 
- **Make all functionality keyboard-accessible.** Users must be able to navigate and operate all interactive components using a keyboard alone. Ensure a **visible focus indicator** is present on focused elements. Do not remove the browser’s default focus outline without providing an equivalent visible style.
- **Use ARIA attributes sparingly and appropriately.** Only use WAI-ARIA roles/properties when native HTML elements can’t achieve the desired accessible behavior. (Prefer semantic HTML elements with built-in accessibility over adding ARIA roles to non-semantic elements.)
- **Adhere to these accessibility practices in all code**
Astro Docshttps://github.com/withastro/docs/tree/main/src/content/docs/en

Prompts

Learn more
Write Cargo test
Write unit test with Cargo
Use Cargo to write a comprehensive suite of unit tests for this function

Context

Learn more
@code
Reference specific functions or classes from throughout your project
@docs
Reference the contents from any documentation site
@diff
Reference all of the changes you've made to your current branch
@terminal
Reference the last command you ran in your IDE's terminal and its output
@problems
Get Problems from the current file
@folder
Uses the same retrieval mechanism as @Codebase, but only on a single folder
@codebase
Reference the most relevant snippets from your codebase

No Data configured

MCP Servers

Learn more

No MCP Servers configured