By Code Domain
The types of code that have generated the most Diff Delta
tl;dr Summary
July 15, 2026
July 12, 2026
- Add v1 Provider Bubble Map to feature_showdowns#show
July 11, 2026
- Allow Quick Open to match note names when query words are reordered
- Add 'Guess' label to plugin suggestions button in Add Task popup to make action more obvious
- Update fuzzy matching: allow partial title-word+tag matches, support word reordering, prefer recent task notes
July 9, 2026
- Add per-feature app counts and single-provider highlight to comparison table styles
July 8, 2026
- Add editorial byline and index page for Feature Showdowns
July 7, 2026
July 6, 2026
July 3, 2026
July 2, 2026
- Allow pinning of recently changed shared notes; fix recency ordering and add pagination
June 30, 2026
June 28, 2026
- Add minute-aware clock label; expose proposed-agenda in dashboards; increase shared-notes MAX_SCAN to 1000
- Add person filtering, pagination, and index build timing to Shared Notes component
June 27, 2026
- Fix config popup appearing outside visible viewport
June 26, 2026
- Replace DreamTask NoConfigState with Ample Agent upsell
- Revise ensure_optimal_seat_allocation to fall back to total commit counts when seats exceed active committers
Add AI usage stats: code-line percent, inactive committer counts, LLM delta and token counts
Update app/views/shared/resource_actions/ai_usage_stats.html.haml to add and rearrange AI usage chart segments. New segments include ai_code_line_percent, ai_inactive_committer_count, delta_from_llms and token_count_sum_total (covers cached/uncached and input/write token types). Provides clearer visibility into AI code contribution, inactive usage by provider, LLM diffs and token consumption for better monitoring and analysis.
Awaiting deploy
Worked July 15 in gitclear/gitclear
100 Δ
Update fuzzy matching: allow partial title-word+tag matches, support word reordering, prefer recent task notes
Refactor util/fuzzy-match-notes.js to change fuzzy-match behavior: split tags into words (TAG_WORD_DELIMITER) and require tag-word equality; allow a partial title word to count only if the remaining query words match tags; accept query words in any order for name matches; tighten piecemeal-match rules; prefer most-recent note-with-tasks when recently changed; add tests and refined highlighting. Result: more accurate quick-open suggestions and clearer match highlighting.
Awaiting deploy
Worked July 11 in alloy-org/ample-notes-store
100 Δ
Add v2 home page styles scoped under .home-v2 to implement modernized ?version=2 design
Introduce a new SCSS file (app/assets/stylesheets/pages/_home_v2.scss) implementing a modernized "?version=2" home concept scoped under the .home-v2 body class. Adds local color palette, shadows, radii, card/tag/arrow primitives, header adjustments, responsive grid/sections and hover states. Keeps v2 styling isolated from the standard home layout so the new look can be enabled without leaking into existing pages.
Awaiting deploy
Worked July 7 in alloy-org/noteappsinfo
500 Δ
Add provider app reviews: allow signed-in users to create/edit/delete reviews; admins can moderate
Introduce ProviderAppReviewsController to let signed-in users post, edit and remove reviews for provider apps (new, create, edit, update, destroy). Sends notification mail on create, enforces authentication and authorisation (authors vs admins) and distinct permitted params for moderation. Add ProviderAppReview tests for rating/body validations, uniqueness, visibility and aggregate behaviour. Enables logged-in review workflows and admin moderation.
Awaiting deploy
Worked July 6 in alloy-org/noteappsinfo
700 Δ
Add LinkedIn login support to allow user sign-in (prep for enabling reviews)
Introduce LinkedIn OAuth sign-in and bump DB schema (db/schema.rb) to record the change. This prepares the app to accept LinkedIn-authenticated users as a prerequisite for enabling user reviews and account linking, enabling smoother onboarding and future review-related workflows.
Awaiting deploy
Worked July 6 in alloy-org/noteappsinfo
400 Δ
Improve "Complete" prompts: expand long-content window, prefer minimal in-place completions, add guiding examples
In lib/prompts.js: introduce LONG_CONTENT_CHARACTER_LIMIT (200000) and increase the context window for Continue/Complete actions; update noteContentCharacterLimit to use the new long-content cap, snap context excerpts to paragraph boundaries, strip task UUIDs, and add explicit guidance + examples for insertTextComplete that prefer the smallest in-place finish. Result: better handling of very large documents and more concise, predictable completions.
Awaiting deploy
Worked July 6 in alloy-org/ample-agent-pro
100 Δ
Add Agent Pro voting UI and harden AccountStatusBanner visibility/rendering
Adds Agent Pro voting UI and hardens account-status-banner.js rendering and visibility: introduces hasAgentProSubscription prop, VISIBILITY_CHECK_INTERVAL (30s), a _visibilityTimer, renderKey state wired into PortalContainer key and shouldComponentUpdate, periodic DOM visibility checks, and clears timers on unmount. Result: prevents banner tampering/hidden states, reduces spurious double-renders, and enables Agent Pro voting in production.
Deployed July 6
Worked on from June 28 through July 4 in alloy-org/ample-web
600 Δ
Add image optimization action to shrink embedded note images via Tinify (Plausible proxy)
Adds a new image optimization action (lib/functions/image-optimizer.js) and tests (test/image-optimizer.test.js). The action fetches a note's embedded image bytes, POSTs them to a Tinify shrink endpoint (defaults to a Plausible proxy to avoid CORS/auth in iframes), downloads the compressed image, attaches it to the note, updates the in-note image, and alerts the user with a human-readable savings message. Tinify auth uses HTTP Basic (username "api"); tests call Tinify directly until the proxy...
Awaiting deploy
Worked July 3 in alloy-org/ample-agent-pro
100 Δ
Add: Proposed Agenda suggests schedules for future dates when it's late in the current day
Update lib/dashboard/proposed-agenda-service.js to detect when the current day is too late and generate proposed schedules for future dates instead. Modified generateProposedAgenda and task-selection logic; moved/added a test (test/proposed-agenda-next-day.test.js). Result: users get sensible next-day proposals when today's slots are impractical.
Awaiting deploy
Worked June 30 in alloy-org/dashboard-plugin
400 Δ