Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Dec 21, 2025

📝 Popis

Definuje a implementuje pravidla pro neintruzivní chování Blendmate jako tichého co-pilota.

Změny

  • blendmate-app/docs/UI_RULES.md — Kompletní dokumentace 3 chování pravidel:

    • Rule 1: Žádné auto-přepínání panelů na eventy
    • Rule 2: Notifikace jsou opt-in a low-priority
    • Rule 3: Pasivní status indikátory (default)
    • Anti-patterns, code toggles, testing guidelines
  • App.tsx — Implementace Rule 1:

    // Před: automatický přepínač tabu při context eventu
    setActiveTab('nodes');
    
    // Po: user kontroluje tab state, nodeId se updateuje silently
    // Removed auto-switch to 'nodes' tab - user controls tab state
  • NodeHelpView.tsx — Přidána props interface pro budoucí extensibilitu

  • CONTEXT.md — Reference na UI_RULES.md

Verifikace

  • Rules 2 & 3: Ověřeno, že existing implementace je již compliant
  • Build: TypeScript kompiluje bez chyb
  • Security: CodeQL scan čistý (0 alertů)

✅ Checklist

  • Kód odpovídá standardům projektu
  • Změny jsou zdokumentovány (pokud je to potřeba)
  • Manuální testování proběhlo úspěšně
  • Build v CI prošel (pokud je nastaven)

🧪 Jak otestovat

  1. Připoj Blender addon k running app
  2. Vyber různé GN nodes v Blenderu → trigger context events
  3. Verifikuj, že app nepřepíná automaticky na 'nodes' tab
  4. Manuálně přepni na 'nodes' tab → měl by zobrazit aktuální node state
  5. Zkontroluj, že žádné system notifikace se neobjevují
  6. Potvrď, že status indicators jsou subtle (malý dot, low-contrast text)
Original prompt

This section details on the original issue you should resolve

<issue_title>UI: “Quiet companion” behavior rules (non-intrusive)</issue_title>
<issue_description>Fixes part of #52.

Define and implement non-intrusive behavior rules so Blendmate is a quiet co-pilot, not a needy chatbot.

Acceptance:

  • Document rules in blendmate-app/docs/UI_RULES.md (short)
  • Implement at least 3 rules, e.g.:
    • No auto-opening panels on events
    • Notifications are opt-in and low-priority
    • Default to passive status indicators

Notes:

  • Keep it pragmatic: rules should map to code toggles.</issue_description>

Comments on the Issue (you are @copilot in this section)


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

Copilot AI and others added 2 commits December 21, 2025 20:39
- Create UI_RULES.md with 3 core behavior rules
- Implement Rule 1: Remove auto-tab switching on context events
- Rule 2: No notifications (verified - none exist)
- Rule 3: Passive status indicators (verified - already compliant)
- Fix TypeScript build error with NodeHelpView prop

Co-authored-by: lebduska <11066249+lebduska@users.noreply.github.com>
- Add NodeHelpView props interface with nodeId parameter
- Update UI_RULES.md with correct line numbers
- Mark nodeId as intentionally unused for now

Co-authored-by: lebduska <11066249+lebduska@users.noreply.github.com>
Copilot AI changed the title [WIP] Implement non-intrusive behavior rules for quiet companion UI: Define "quiet companion" behavior rules (non-intrusive) Dec 21, 2025
Copilot AI requested a review from lebduska December 21, 2025 20:43
@lebduska lebduska marked this pull request as ready for review December 21, 2025 21:26
@lebduska lebduska merged commit cb4c94c into main Dec 21, 2025
1 check passed
@lebduska lebduska deleted the copilot/define-ui-quiet-companion-rules branch December 21, 2025 22:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

UI: “Quiet companion” behavior rules (non-intrusive)

2 participants