2723 Commits

Author SHA1 Message Date
spencrmartin 05dc08a036 Replace blue ring with blue dot indicator in bottom-right on tile update 2025-11-10 14:53:01 -05:00
spencrmartin 4305108078 feat(navigation): add full-width last tile in 3-column layout
In the 3-column responsive layout (640-1023px), the last tile now
spans the full width while maintaining the same height as other tiles.

- Last tile uses 3:1 aspect ratio (sm/md) instead of 1:1 (square)
- Spans 3 columns in sm/md breakpoints, returns to 1 column in lg+
- Position-based logic works regardless of tile arrangement
- Creates a featured, banner-like appearance for the 10th tile

Layout progression:
- < 640px: 2 cols, all square tiles
- 640-1023px: 3 cols + full-width last tile (3:1 ratio)
- ≥ 1024px: 5 cols, all square tiles
2025-11-07 09:26:17 -05:00
spencrmartin 57696160c0 fix(navigation): simplify responsive grid to 2 cols until lg breakpoint
Remove awkward 3 and 4 column layouts at sm/md breakpoints.
Now maintains clean 2-column vertical layout until 1024px,
then switches to 5-column horizontal layout.

This eliminates layout shifts in the 930-1023px range that
were affecting the bottom bar positioning.
2025-11-07 09:17:36 -05:00
spencrmartin 0d2cd0d7e1 fix(clock): remove unused seconds variable
- Remove unused 'seconds' variable declaration
- Fixes TypeScript error TS6133
- Second hand increments independently without needing seconds value
2025-11-07 08:55:12 -05:00
spencrmartin b5ff0be7d9 fix(clock): simplify second hand to continuously increment
- Replace complex rotation tracking with simple increment
- Second hand now increments by 6° each second: prev => prev + 6
- Continuously rotates forward: 0°, 6°, 12°... 354°, 360°, 366°...
- CSS handles visual wrapping naturally (360° = 0°)
- Eliminates counter-clockwise jump at 12 o'clock
2025-11-07 08:19:18 -05:00
spencrmartin d74efc0160 fix(clock): prevent second hand from rotating backwards at 12
- Track cumulative rotation for second hand
- Detect when crossing from 59s to 0s and add 360° to rotation
- Second hand now continuously rotates clockwise through 12
- Fixes counter-clockwise jump when transitioning from 354° to 0°
2025-11-07 08:17:39 -05:00
spencrmartin c8d2edd429 fix(ui): remove top padding from navigation grid
- Remove pt-0.5 from inner motion.div container
- Grid now sits flush at top with 0px padding
- Maintains pb-0.5 for bottom spacing
2025-11-07 08:15:35 -05:00
spencrmartin f038eebac1 feat(ui): add text label to navigation toggle button
- Add 'Show menu' / 'Hide menu' text next to chevron icon
- Uses text-text-muted and font-mono for consistency
- Improves button discoverability and clarity
2025-11-07 08:08:00 -05:00
spencrmartin 41e4879d5a feat(ui): use accent color for selected navigation tiles
- Apply bg-background-accent and text-text-on-accent to active tiles
- Matches primary button color scheme (Switch models button)
- Update both TopNavigation and Settings tiles
- Active state now clearly distinguishable with accent color
- Description text uses text-on-accent/70 when active for contrast
2025-11-06 15:12:44 -05:00
spencrmartin 0cf932bb33 fix(settings): improve text color contrast in settings tiles
- Add explicit text-text-default class to icon and label
- Ensures consistent text color with TopNavigation tiles
- Improves readability and visual consistency
2025-11-06 14:55:35 -05:00
spencrmartin 21abf99b51 fix(navigation): add type casting for drag event handlers in motion.div
- Cast drag events to React.DragEvent for motion.div components
- Fixes TypeScript errors with framer-motion drag handlers
- Resolves TS2345 type assignment errors
2025-11-06 14:28:24 -05:00
spencrmartin a3d6f3f9f6 feat(navigation): replace CSS transitions with framer-motion spring animations
- Add framer-motion dependency (^11.15.0)
- Implement spring physics for drawer open/close animation
  - Stiffness: 300, Damping: 30, Mass: 0.8 for natural feel
  - Replaces inconsistent CSS transitions (700ms open, 1000ms close)
- Add content slide animation with spring physics
- Enhance tile entrance animations with spring and scale effects
  - 30ms stagger between tiles (reduced from 50ms)
  - Smooth fade-in with scale from 0.9 to 1.0
- Add interactive hover/tap animations on navigation buttons
  - whileHover: scale 1.02
  - whileTap: scale 0.98
- Replace max-height animation with height: auto for better performance
- Integrate drag state animations with spring physics

Benefits:
- Natural, organic animation feel with physics-based motion
- Consistent timing for open and close (adaptive spring)
- Better performance using GPU-accelerated transforms
- Proper exit animations with AnimatePresence
- Built-in reduced-motion support from framer-motion
2025-11-06 14:19:46 -05:00
spencrmartin 0c9ba8eb27 fix(test): add null check for extensionsList in TopNavigation
- Add safety check for extensionsList before calling filter
- Prevents test failure when extensionsList is undefined
- Returns '0 of 0 enabled' as fallback
2025-11-06 13:19:29 -05:00
spencrmartin ea0a767285 chore: remove accidentally committed files
- Remove temporary .md documentation files
- Remove temporal-service binary
- Remove verify_monaco.sh script
- Keep only project-related .md files (README, CONTRIBUTING, etc.)
2025-11-06 13:15:57 -05:00
spencrmartin b70d393667 fix(lint): add eslint-disable comments for React Hook warnings
- Disable exhaustive-deps for fetchNavigationData effect (intentional)
- Disable exhaustive-deps for tileOrder initialization (runs once)
- Disable exhaustive-deps for pulse animation effect (intentional)
2025-11-06 13:14:20 -05:00
spencrmartin ca09dd90df fix(lint): properly handle unused variables with underscore prefix
- Rename insights and error to _insights and _error (TypeScript convention)
- Remove documentTools.ts file that was causing type errors
- This file was accidentally included and is unrelated to navigation work
2025-11-06 13:11:08 -05:00
spencrmartin 0223f4cd61 fix(lint): remove unused variables and imports
- Remove unused setIsGoosehintsModalOpen parameter in AppLayout
- Add eslint-disable comments for insights and error in SessionsInsights
- Remove unused TabsList and TabsTrigger imports in SettingsView
2025-11-06 12:59:50 -05:00
spencrmartin 9305153407 fix(navigation): implement recipes count using listSavedRecipes API
- Import listSavedRecipes from recipe_management
- Fetch actual recipe count instead of placeholder
- Add error handling for recipe fetch
- Recipes tile now shows correct count
2025-11-06 12:54:06 -05:00
spencrmartin b230df5b4d feat(navigation): add drag-and-drop reordering and pulse animations
- Add drag-and-drop functionality for tile reordering
  - Users can drag any tile to customize layout
  - Visual feedback with opacity, scale, and ring indicators
  - Grip handle icon appears on hover
  - Order persists during session

- Add pulse animation on data updates
  - Tiles pulse with blue ring when data changes
  - 2-second animation provides visual feedback
  - Tracks previous values to detect changes

- Fix clock animation precision
  - Recalculate angles from current time instead of incrementing
  - Eliminates time drift over long sessions

- Optimize todayChatsCount calculation
  - Single-pass counting instead of double iteration
  - More efficient and cleaner code

Technical changes:
- Add unique id to NavItem interface
- Add state management for drag-and-drop (draggedItem, dragOverItem, tileOrder)
- Add state management for pulse animation (prevValues, pulsingItems)
- Import GripVertical icon from lucide-react
- Implement HTML5 drag-and-drop API handlers
2025-11-06 12:53:02 -05:00
spencrmartin a7b76b303e Redesign navigation and settings with tile-based UI
- Replace sidebar navigation with expandable top navigation bar
- Implement iOS-style dock with glass effect app icons (Plus, FileEdit, Globe, FileText)
- Add dynamic data pills to navigation tiles (time, chat counts, sessions, etc.)
- Create widget tiles: analog clock, activity heatmap, token counter
- Redesign settings page with smaller tile-based navigation
- Fix clock animation to prevent counter-clockwise rotation
- Remove useSidebar dependencies from pair.tsx and BaseChat2.tsx
- Adjust animation timing for smoother expand/collapse transitions
- Ensure proper spacing and rounded corners throughout
2025-11-06 11:55:30 -05:00
Alex Hancock b5eaa6a3e4 fix: unblock acp via databricks (#5562) 2025-11-04 11:40:05 -05:00
Sheikh Limon d4a7bd39be feat: add --output-format json flag to goose run command (#5525)
Signed-off-by: sheikhlimon <sheikhlimon404@gmail.com>
Signed-off-by: Sheikh Limon <sheikhlimon404@gmail.com>
2025-11-04 11:33:17 -05:00
Douwe Osinga 5b93ee587f Sessions required (#5548)
Co-authored-by: Douwe Osinga <douwe@squareup.com>
2025-11-03 21:04:44 -05:00
jom-sq 86c3e42e43 feat: add grouped extension loading notification (#5529)
Signed-off-by: jom-sq <148157197+jom-sq@users.noreply.github.com>
2025-11-03 19:43:20 -06:00
Michael Neale 7511a533d6 we should run this on main and also test open models at least via ope… (#5556)
adds qwen3-code and GLM 4.6 to test_providers for open model coverage
2025-11-04 09:06:23 +11:00
Alex Hancock 2c1e52c3c2 info: print location of sessions.db via goose info (#5557) 2025-11-03 17:03:28 -05:00
Alex Hancock 69e083ec1d chore: remove yarn usage from documentation (#5555) 2025-11-03 17:03:15 -05:00
Alex Hancock da45ca9282 cli: adjust default theme to address #1905 (#5552) 2025-11-03 16:46:22 -05:00
David Katz 9466d92f04 Manual compaction counting fix + cli cleanup (#5480) 2025-11-03 16:27:12 -05:00
dependabot[bot] 723cbce7ee chore(deps): bump prismjs and react-syntax-highlighter in /ui/desktop (#5549)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-03 16:09:29 -05:00
Alex Hancock 38e7dc8f30 fix: remove qwen3-coder from provider/mcp smoke tests (#5551) 2025-11-03 14:33:49 -05:00
Alex Hancock d2bed8efa4 fix: do not build unsigned desktop app bundles on every PR in ci. add manual option. (#5550) 2025-11-03 13:23:33 -05:00
Sheikh Limon 13a4985527 fix: update Husky prepare script to v9 format (#5522)
Signed-off-by: sheikhlimon <sheikhlimon404@gmail.com>
2025-11-03 12:55:38 -05:00
Timothy 9fa22cf036 Fix 404 for responsible coding guide (#5543)
Merging because it's docs only and fixes a 404
2025-11-03 12:40:38 -05:00
BestCodes bb2c27b4d8 fix hermit text file busy issues on linux (#5372)
Signed-off-by: The-Best-Codes <bestcodes.official@gmail.com>
2025-11-03 12:37:25 -05:00
Douwe Osinga d70c24cda5 Fix image processing (#5544)
Co-authored-by: Douwe Osinga <douwe@squareup.com>
2025-11-03 12:29:43 -05:00
Angie Jones d46554dc88 docs: AI attribution for PRs (#5547) 2025-11-03 12:24:21 -05:00
Alex Hancock c1c13716e0 chore(tests/mcp): testing for MCP sampling (#5456) 2025-11-03 12:23:11 -05:00
Angie Jones f7a4d1b01b docs: adding HOWTOAI.md (#5533)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-11-03 02:25:51 -06:00
Viet Bui 4695d98005 added configuration content, also added signoff, fix merging issue with another commit by creating a clean branch. removed and closed commits that caused signoff issues. (#5519)
Signed-off-by: vietbui99 <buiquocviet99@gmail.com>
2025-11-03 03:00:37 -05:00
Paul Silvis 50191766c3 Fixes Gemini API parse issue by converting nullable type arrays to single types in tool schemas (#5530)
Signed-off-by: Paul Silvis <paulsilvis@gmail.com>
2025-11-02 13:49:36 -06:00
Rizel Scarlett de0afbeb1b Troubleshooting diagnostics doc (#5526) 2025-11-02 14:19:47 -05:00
Angie Jones 722103a1ed fix link to Ollama FAQ (#5531) 2025-11-02 13:19:31 -06:00
dianed-square bd1ffd21e3 docs: remove speech-mcp (#5514) 2025-11-02 12:10:42 -06:00
Matt Yaple c7cd9b424c fix: adds ProviderRetry to openai provider (#5518)
Signed-off-by: Matt Yaple <matt@yaple.dev>
2025-11-01 08:04:23 -04:00
dianed-square 93f92e94f7 docs: extensions directory minor updates (#5466) 2025-10-31 11:16:26 -07:00
dianed-square aa100cfbcf Docs/json recipe support (#5492) 2025-10-31 11:16:14 -07:00
dianed-square 69198fc6b2 docs: recipe buttons (#5507) 2025-10-31 11:14:43 -07:00
Zane 9d07497050 Improve system theme detection and fallback (#5427) 2025-10-31 11:13:08 -07:00
Andrew Harvard 05ef93c6dc [Autovisualiser] remove unnecessary content from mermaid HTML template (#5505) 2025-10-31 13:11:08 -04:00