Commit Graph

602 Commits

Author SHA1 Message Date
Ásgeir Thor Johnson e2b9748db5 Create mistral-code.md 2026-07-07 13:26:24 +00:00
Ásgeir Thor Johnson 5ed7d1f379 Update README.md 2026-07-07 02:16:35 +00:00
Ásgeir Thor Johnson 267c1547d7 Replace pasted banner with theme-aware light/dark pair in .github/ 2026-07-06 07:18:16 +00:00
Ásgeir Thor Johnson 61d81be99c Add artifact-design bundled skill 2026-07-02 23:06:17 +00:00
Ásgeir Thor Johnson 3db8129655 Update code-review skill and add code-review effort levels + dataviz skill 2026-07-02 08:59:00 +00:00
Ásgeir Thor Johnson feff4a1a53 Update claude-sonnet-5.md 2026-07-01 14:43:22 +00:00
Ásgeir Thor Johnson 8668a0fddd Update Claude Sonnet 5 prompt and list it in README 2026-07-01 10:14:18 +00:00
Ásgeir Thor Johnson abf850ed1a Create claude-sonnet-5.md 2026-07-01 09:53:52 +00:00
Ásgeir Thor Johnson 86e3ed58eb Update Claude Design prompt to June 26 capture
- Canvas mode replaces manual side-by-side frames (design_doc_mode meta + Canvas skill)
- New metrics_overlay.js starter component (full <metrics-overlay>/<metrics-funnel> source)
- Remove register_assets/unregister_assets tools (50 -> 48)
- Add PDF auto-sizing + data-om-raster export guidance
- x-import dc-props/extra-props rules, per-DC bundle loading, reworded skills intro
- README: refresh counts and date
2026-06-26 14:55:32 +00:00
Ásgeir Thor Johnson 0d3f991b02 Remove duplicate Codex system instruction files 2026-06-24 13:12:23 +00:00
Ásgeir Thor Johnson 2927cd46c2 Create control-in-app-browser.md 2026-06-24 13:11:24 +00:00
Ásgeir Thor Johnson c4d1a82bbf Create computer-use.md 2026-06-24 13:04:47 +00:00
Ásgeir Thor Johnson e0a262da9c Create control-chrome.md 2026-06-24 13:04:08 +00:00
Ásgeir Thor Johnson f6d16aadb8 Create stack-overflow-ai-assist.md 2026-06-24 12:37:12 +00:00
Ásgeir Thor Johnson 0cacd78a74 README: surface Claude Design (Opus 4.8) capture — full prompt + 50 tools + 16 skills + 8 starter sources 2026-06-23 03:12:23 +00:00
Ásgeir Thor Johnson baa5171519 Update claude-design.md 2026-06-23 03:04:50 +00:00
Ásgeir Thor Johnson a1ec033ebb Remove linguist Markdown overrides — JS trending is more valuable 2026-06-21 15:50:24 +00:00
Ásgeir Thor Johnson 15fa4739eb Track .gitattributes for linguist overrides
Makes Markdown show as the repo's primary language on GitHub.
Previously excluded in .git/info/exclude by mistake.
2026-06-21 15:45:00 +00:00
Ásgeir Thor Johnson dccfc32672 Add per-page history drill-down to traffic dashboard
Click any row in the Top Pages table to see that page's full history:
- Area chart of 14-day rolling views + uniques over time
- Data table with every snapshot date and day-over-day change badges
- Section hidden until first click, switches on subsequent clicks
2026-06-21 14:28:51 +00:00
Ásgeir Thor Johnson 37cab875a2 Add Codex system instruction extractions 2026-06-21 04:30:05 +00:00
Ásgeir Thor Johnson 28639e67c6 Surface stars today/7d in the GitHub Stars stat card too
The live readout was only on the chart title; mirror today + 7d into the
top stat card where the headline numbers are, sourced from the same live
windows (falls back to series 7d).
2026-06-19 00:26:26 +00:00
Ásgeir Thor Johnson ac392bd0d4 Add live stars today/7d/30d readout to the GitHub Stars card
Fetch real stars gained in rolling 1d/7d/30d windows from live starredAt
timestamps (GraphQL, newest-first) at generation time, so the readout matches
GitHub's own numbers regardless of snapshot timing. Falls back to the daily
series if the fetch fails. Stat card 7d now sourced the same way.
2026-06-19 00:14:57 +00:00
Ásgeir Thor Johnson 85c360ba69 Add toggle to show/hide aggregate paths in Page Trends + Top Pages
New 'Show folders, root & overview' checkbox. Default hides aggregate paths
(repo Overview, /tree/main root, /tree/main/<dir> folder listings) so the
chart and table show only real file pages; checking it includes them. Both the
Page Trends chart and Top Pages table re-render off the one toggle.
2026-06-19 00:01:46 +00:00
Ásgeir Thor Johnson 51ffecd437 Promote Page Trends to top, show full day-detail breakdown
- move Page Trends chart directly under the main views/stars charts (it's the
  most useful view) and widen it to 8 lines / taller
- day detail: drop the top-5 cap on pages and referrers (GitHub snapshots cap
  at 10 each, so show all of them) and add unique counts
2026-06-18 23:55:05 +00:00
Ásgeir Thor Johnson 875b86e8c5 Fix All Referrers chart showing numeric indices instead of source names
categories belong under xaxis in ApexCharts (even for horizontal bars); they
were under yaxis, so Apex fell back to numeric category indices. Moved them to
xaxis.categories — left axis now labels each bar with its referrer domain.
2026-06-18 23:51:08 +00:00
Ásgeir Thor Johnson 34e15c1078 Spread multi-day star gaps across days so no false single-day spike
Render-time fix: build daily points by spreading any >1-day gap between
snapshots evenly, so a tracker outage (or the one-time backfill seam) never
renders the accumulated gain as a single giant bar.
2026-06-18 23:14:11 +00:00
Ásgeir Thor Johnson 90dc0ecb06 Fix misleading star-gain stat label
The stargazers timestamp API caps at 40k (oldest-first), leaving a multi-week
gap between the backfilled per-day curve and today's appended total. The 7-day
lookback landed in that gap and labeled a 36-day delta as 'last 7d'. Now label
the gain by its true span; self-heals to 7d as daily points accumulate.
2026-06-18 23:06:44 +00:00
Ásgeir Thor Johnson 1a008815e4 Add GitHub stars tracker to traffic dashboard
- accumulate-traffic.py: fetch stargazers_count each run, accumulate a
  daily stars_series (seeded with 375-point backfill on the traffic branch),
  embed it, and render a cumulative-stars area chart with per-day-gain bars
  plus a Total Stars stat card with 7-day growth
- workflow: pass GITHUB_TOKEN to the accumulate step for authenticated star reads
2026-06-18 23:03:13 +00:00
Ásgeir Thor Johnson ee214e821b Add GitHub Copilot for macOS (desktop app) system prompt
Previously sat untracked in .github/ mislabeled as the CLI prompt. It is a
distinct product: the macOS app that manages Copilot CLI sessions (worktree
or folder-backed), adding session-manager behavior (create_session,
create_pull_request, local-first git workflow) absent from the CLI prompt.
Refiled under Microsoft/ and linked in README.
2026-06-18 22:52:07 +00:00
Ásgeir Thor Johnson 23e8dc1a3d Update Claude Code bundled skills and Opus 4.8 prompt
- bundled-skills: add compact.md and init-new.md; update init.md and
  update-config.md; remove update-config-schema.json
- claude-opus-4.8.md: refresh prompt content
2026-06-18 19:41:24 +00:00
Ásgeir Thor Johnson f2c99301f7 Add full built-in skill instructions to claude-design and full GPT-5.5 Codex prompt
- claude-design.md: expand from skill index to full bodies for all 13 listed
  skills plus Make a Doc and Read PDF (+ starter component .jsx blocks)
- OpenAI/Codex/gpt-5.5.md: full prompt content
- README: note both updates in Recently Updated
2026-06-18 19:41:23 +00:00
Ásgeir Thor Johnson 3ead81cc65 Update claude-design.md 2026-06-18 19:31:27 +00:00
Ásgeir Thor Johnson 4413670f99 Update claude-design.md 2026-06-18 19:27:22 +00:00
Ásgeir Thor Johnson 07347914e3 Update claude-sonnet-4.6.md 2026-06-18 18:13:04 +00:00
Ásgeir Thor Johnson 9c640c53a2 Create sonnet-4.6-reminders.md 2026-06-18 17:19:08 +00:00
Ásgeir Thor Johnson a8ddec1109 Update claude-code-2.1.172-fable-5.md 2026-06-17 01:58:38 +00:00
Ásgeir Thor Johnson fcd7a52bd8 Add full verbatim settings schema (129KB, extracted from JSONL) 2026-06-16 22:20:37 +00:00
Ásgeir Thor Johnson a18eaa5a1b Add full settings JSON schema to update-config skill 2026-06-16 22:04:02 +00:00
Ásgeir Thor Johnson 51aac4d862 Replace update-config with binary-extracted version 2026-06-16 21:57:47 +00:00
Ásgeir Thor Johnson 39b5ecd87e Add update-config bundled skill 2026-06-16 21:54:35 +00:00
Ásgeir Thor Johnson 678e7fadee Add Claude Code 2.1.172 prompts (Fable 5, Opus 4.6, Opus 4.8); strip trailing whitespace from Opus 4.8 prompt
Three new system prompt extractions from Claude Code v2.1.172, one per
model, capturing the per-model differences in the harness prompt. The
claude-opus-4.8.md change is whitespace-only (trailing double-space
removal), no content changes.
2026-06-11 01:04:52 +00:00
Ásgeir Thor Johnson 6b8c7f3bc1 README: add Opus 4.8 → Fable 5 system prompt diff link at top 2026-06-09 20:30:28 +00:00
Ásgeir Thor Johnson 416632cdf7 Update README: add Fable 5, fix moved Claude Code and dated Official links 2026-06-09 20:27:36 +00:00
Ásgeir Thor Johnson 4e6e5d7fbd Add Claude Fable 5 prompt, official Opus 4.8, Claude Code Glob/Grep tools; update Opus 4.8 extraction 2026-06-09 20:27:36 +00:00
Ásgeir Thor Johnson 56b24b62e2 Dashboard: move Daily Clones to bottom; show top 20 pages/referrers aggregated across all snapshots 2026-06-07 10:14:56 +00:00
Ásgeir Thor Johnson 782f4b07b3 Add since-start date + day count to Total Views stat on traffic dashboard 2026-06-07 10:07:03 +00:00
Ásgeir Thor Johnson 9c900e4874 Update README.md 2026-06-05 03:07:30 +00:00
Ásgeir Thor Johnson e80c08871c Move LICENSE back to root — GitHub only detects it there 2026-06-05 02:58:59 +00:00
Ásgeir Thor Johnson 71ca5133b7 Move CONTRIBUTING.md and LICENSE to .github/ 2026-06-05 02:58:01 +00:00
Ásgeir Thor Johnson 2b0730d01e Create devin-cli.md 2026-06-04 16:40:50 +00:00