feat: feedback button, cf-core env-var LLM config, mobile polish #14
No reviewers
Labels
No labels
backlog
beta-feedback
bug
duplicate
enhancement
help wanted
invalid
needs-design
needs-triage
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Circuit-Forge/kiwi#14
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/orch-auto-lifecycle"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
FeedbackButton.vue) — 2-step modal (type → review → submit) that creates Forgejo issues; probes/feedback/statuson mount so button only shows whenFORGEJO_API_TOKENis configured; hidden in demo modeOLLAMA_HOST/ANTHROPIC_API_KEY/OPENAI_API_KEYwith nollm.yamlneeded;CF_LICENSE_KEYwired for hosted coordinator auth;circuitforge-corepinned to>=0.6.0inv-row-rightshrink fix;overflow-x: hiddenon body and inventory list;env(safe-area-inset-bottom)for iPhone home bar clearance.gitleaksignore— suppress initial-commit.envfalse positive (DIRECTUS_JWT_SECRET already gitignored going forward; rotate if not already done)requests>=2.31declared inpyproject.toml(used by feedback endpoint Forgejo calls)Test plan
pytest tests/api/test_feedback.py— 7 tests: status endpoint, 503/403 gates, happy path, 502 on Forgejo errorFORGEJO_API_TOKENin.envand confirm feedback FAB appears on loadFORGEJO_API_TOKENunset and confirm FAB stays hiddenOLLAMA_HOST(nollm.yaml) and confirm LLM recipe path works- feedback.py: add GET /feedback/status endpoint (returns {enabled: bool}) so frontend can probe on mount instead of optimistic-enable; remove unused get_db import - FeedbackButton.vue: probe /feedback/status on mount, start hidden; drop redundant 503-hide path (status probe makes it redundant) - pyproject.toml: declare requests>=2.31 (used by feedback.py Forgejo calls) - tests/api/test_feedback.py: 7 tests — status endpoint (no-token, token, demo mode), POST 503/403, happy path with mocked Forgejo, 502 on error