├── .claude ├── analytics-layout-spec.md └── skills │ └── deploy.md ├── .git-tools ├── edit_msg.sh └── reword_all.py ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .mailmap ├── .swiftlint.yml ├── AgentSessions.xcodeproj ├── project.pbxproj ├── project.pbxproj.backup ├── project.pbxproj.backup-20251004-144534 ├── project.pbxproj.backup2 ├── project.pbxproj.bak ├── project.pbxproj.bak2 ├── project.pbxproj.bak3 ├── project.pbxproj.final ├── project.pbxproj.fix ├── project.pbxproj.fix2 └── xcshareddata │ └── xcschemes │ ├── AgentSessions.xcscheme │ └── AgentSessionsLogicTests.xcscheme ├── AgentSessions ├── AgentSessions.entitlements ├── AgentSessionsApp.swift ├── Analytics │ ├── Models │ │ ├── AnalyticsData.swift │ │ └── AnalyticsDateRange.swift │ ├── README.md │ ├── Repositories │ │ └── AnalyticsRepository.swift │ ├── Services │ │ └── AnalyticsService.swift │ ├── Utilities │ │ ├── AnalyticsColors.swift │ │ └── AnalyticsDesignTokens.swift │ └── Views │ │ ├── AgentBreakdownView.swift │ │ ├── AnalyticsView.swift │ │ ├── AnalyticsWindowController.swift │ │ ├── SessionsChartView.swift │ │ ├── StatsCardsView.swift │ │ └── TimeOfDayHeatmapView.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── AxisGridline.colorset │ │ └── Contents.json │ ├── CardBackground.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── HeatmapCellEmpty.colorset │ │ └── Contents.json │ ├── MenuIconClaude.imageset │ │ ├── Contents.json │ │ ├── MenuIconClaude-18.png │ │ └── MenuIconClaude-36.png │ ├── MenuIconCodex.imageset │ │ ├── Contents.json │ │ ├── MenuIconCodex-18.png │ │ └── MenuIconCodex-36.png │ ├── chatgpt_8bit_alpha.imageset │ │ ├── Contents.json │ │ └── chatgpt_8bit_alpha.png │ └── claude_8bit_alpha.imageset │ │ ├── Contents.json │ │ └── claude_8bit_alpha.png ├── ClaudeResume │ ├── ClaudeCLIEnvironment.swift │ ├── ClaudeFeatureFlag.swift │ ├── ClaudeITermLauncher.swift │ ├── ClaudeResumeCommandBuilder.swift │ ├── ClaudeResumeCoordinator.swift │ ├── ClaudeResumeSettings.swift │ ├── ClaudeResumeTypes.swift │ └── ClaudeTerminalLauncher.swift ├── ClaudeStatus │ ├── ClaudeProbeConfig.swift │ ├── ClaudeProbeProject.swift │ ├── ClaudeStatusService.swift │ ├── ClaudeUsageModel.swift │ └── ClaudeUsageStripView.swift ├── CodexStatus │ ├── CapPressureStore.swift │ ├── CodexProbeCleanup.swift │ ├── CodexProbeConfig.swift │ ├── CodexStatusService.swift │ ├── MenuBarPrefs.swift │ ├── UsageDisplayFormatter.swift │ ├── UsageDisplayMode.swift │ ├── UsageFreshness.swift │ ├── UsageStaleCheck.swift │ └── UsageStripView.swift ├── GitInspector │ ├── Models │ │ ├── CurrentGitStatus.swift │ │ ├── GitFileStatus.swift │ │ ├── GitSafetyCheck.swift │ │ ├── HistoricalGitContext.swift │ │ └── InspectorKeys.swift │ ├── Services │ │ ├── CollapsedStateStore.swift │ │ ├── GitContextExtractor.swift │ │ ├── GitSafetyAnalyzer.swift │ │ └── GitStatusCache.swift │ ├── Utilities │ │ ├── ColorExtensions.swift │ │ ├── GitCommandRunner.swift │ │ └── GitInspectorWindowController.swift │ └── Views │ │ ├── ButtonActionsView.swift │ │ ├── CurrentSection.swift │ │ ├── GitInspectorView.swift │ │ ├── HistoricalSection.swift │ │ ├── SafetySection.swift │ │ └── StatusHeroSection.swift ├── Indexing │ ├── AnalyticsIndexer.swift │ ├── DB.swift │ └── SessionMetaRepository.swift ├── Info.plist ├── MenuBar │ ├── SettingsUpdateProxy.swift │ ├── StatusItemController.swift │ └── UsageMenuBar.swift ├── Model │ ├── Session.swift │ ├── SessionEvent.swift │ └── SessionSource.swift ├── OpenCode │ ├── OpenCodeCLIEnvironment.swift │ └── OpenCodeSettings.swift ├── Resources │ ├── claude_usage_capture.sh │ ├── codex_ping_test.sh │ ├── codex_probe_marker_test.sh │ ├── codex_status_after_marker_test.sh │ ├── codex_status_capture.sh │ ├── codex_status_min_test.sh │ ├── codex_status_quick_test.sh │ └── codex_status_tui_test.sh ├── Resume │ ├── CodexCLIEnvironment.swift │ ├── CodexLaunchMode.swift │ ├── CodexResumeCommandBuilder.swift │ ├── CodexResumeCoordinator.swift │ ├── CodexResumeLauncher.swift │ ├── CodexResumeSettings.swift │ ├── CodexResumeSheet.swift │ ├── CodexVersion.swift │ ├── CommandExecutor.swift │ └── ResumeHealthCheck.swift ├── Search │ └── SearchCoordinator.swift ├── Services │ ├── AppAppearance.swift │ ├── ClaudeSessionIndexer.swift │ ├── ClaudeSessionParser.swift │ ├── GeminiCLIEnvironment.swift │ ├── GeminiCLISettings.swift │ ├── GeminiHashResolver.swift │ ├── GeminiSessionDiscovery.swift │ ├── GeminiSessionIndexer.swift │ ├── GeminiSessionParser.swift │ ├── LayoutMode.swift │ ├── OpenCodeSessionDiscovery.swift │ ├── OpenCodeSessionIndexer.swift │ ├── OpenCodeSessionParser.swift │ ├── SessionDiscovery.swift │ ├── SessionIndexer.swift │ ├── SessionTranscriptBuilder.swift │ ├── SessionViewMode.swift │ ├── TerminalModels.swift │ ├── TranscriptCache.swift │ ├── TranscriptRenderMode.swift │ ├── TranscriptTheme.swift │ ├── UnifiedSessionIndexer.swift │ └── WindowFocusCoordinator.swift ├── Support │ ├── AppRuntime.swift │ ├── ColumnVisibilityStore.swift │ ├── FeatureFlags.swift │ └── TypingActivity.swift ├── Update │ ├── GitHubClient.swift │ ├── SemanticVersion.swift │ ├── UpdateCheckModel.swift │ ├── UpdateChecker.swift │ ├── UpdateDefaults.swift │ ├── UpdateModels.swift │ └── UpdaterController.swift ├── Utilities │ ├── FlowLayout.swift │ ├── JSONLReader.swift │ ├── PreferencesWindowController.swift │ ├── PrettyJSON.swift │ ├── SplitViewAutosave.swift │ └── WindowAutosave.swift └── Views │ ├── ClaudeSessionsView.swift │ ├── EventInspectorView.swift │ ├── GeminiTranscriptView.swift │ ├── LoadingAnimationView.swift │ ├── OpenCodeTranscriptView.swift │ ├── Preferences │ ├── PreferencesConstants.swift │ ├── PreferencesView+About.swift │ ├── PreferencesView+CLI.swift │ ├── PreferencesView+General.swift │ ├── PreferencesView+Layout.swift │ ├── PreferencesView+MenuBar.swift │ ├── PreferencesView+OpenCode.swift │ ├── PreferencesView+Usage.swift │ └── PreferencesView+UsageProbes.swift │ ├── PreferencesView.swift │ ├── SearchFiltersView.swift │ ├── SessionTerminalView.swift │ ├── SessionTimelineView.swift │ ├── SessionsListView.swift │ ├── TranscriptPlainView.swift │ └── UnifiedSessionsView.swift ├── AgentSessionsLogicTests ├── ClaudeProbeConfigShim.swift └── ProbeAutoCleanupTests.swift ├── AgentSessionsTests ├── ClaudeProbeProjectTests.swift ├── CodexResumeCoordinatorTests.swift ├── CodexResumeTests.swift ├── CodexUsageParserTests.swift ├── ColumnVisibilityStoreTests.swift ├── FavoritesStoreTests.swift ├── GeminiParserTests.swift ├── Indexing │ ├── AnalyticsIndexerTests.swift │ └── DBSmokeTests.swift ├── Info.plist ├── SessionParserTests.swift ├── SessionTitleTests.swift ├── TranscriptBuilderTests.swift └── UpdateCheckerTests.swift ├── CHANGELOG.md ├── CLAUDE.md ├── GEMINI.md ├── README.md ├── Resources └── Fixtures │ ├── codex_050_legacy.jsonl │ ├── codex_051_usage.jsonl │ ├── codex_052_raw.jsonl │ ├── codex_053_rate_limit.jsonl │ ├── session_branch.jsonl │ ├── session_simple.jsonl │ └── session_toolcall.jsonl ├── agents.md ├── docs ├── BigPicture 2-6 to 2-7 adr.md ├── CHANGELOG.md ├── Energy-and-Performance.md ├── QA_SUMMARY_v2.1.md ├── Session Viewer 2 - for v2.6.5.md ├── Ventura-macOS13-compatibility.md ├── adr │ ├── 0001-session-event-schema.md │ ├── 0002-adopt-sparkle-2.md │ └── 0003-sqlite-rollups-index.md ├── analytics │ ├── ADDING_TO_XCODE.md │ ├── BUILD_SUCCESS.md │ ├── HIDE_LOW_MESSAGE_DEFAULT.md │ ├── IMPLEMENTATION_SUMMARY.md │ ├── PROGRESSIVE_PARSING_COMPLETE.md │ ├── README.md │ ├── SESSION_COUNT_FIX.md │ ├── analytics-design-guide.md │ ├── analytics-indexing-checklist.md │ ├── field-catalog.yaml │ ├── gap-report.md │ ├── metrics-matrix.md │ └── prototype-metrics.json ├── appcast.xml ├── assets │ ├── AS-social-media.png │ ├── agent-sessions-icons Exports │ │ ├── agent-sessions-icons-iOS-ClearDark-1024x1024@1x.png │ │ ├── agent-sessions-icons-iOS-ClearLight-1024x1024@1x.png │ │ ├── agent-sessions-icons-iOS-Dark-1024x1024@1x.png │ │ ├── agent-sessions-icons-iOS-Default-1024x1024@1x.png │ │ ├── agent-sessions-icons-iOS-TintedDark-1024x1024@1x.png │ │ └── agent-sessions-icons-iOS-TintedLight-1024x1024@1x.png │ ├── agent-sessions-icons.icon │ │ ├── Assets │ │ │ └── app-icon-1024.png │ │ └── icon.json │ ├── analytics-dark.png │ ├── app-icon-1024.png │ ├── app-icon-32.png │ ├── app-icon-512.png │ ├── git-context-light.png │ ├── screenshot-H-window.png │ ├── screenshot-H.png │ ├── screenshot-V.png │ ├── screenshot-menubar.png │ └── screenshot-settings.png ├── claude-code-session-format.md ├── claude-resume.md ├── claude-usage-probe-cleanup-spec.md ├── codebase-0.1-review.md ├── codex-resume.md ├── deploy-skill.md ├── deployment.md ├── focus-architecture.md ├── focus_bug_prompt.md ├── git-inspector │ ├── IMPLEMENTATION_COMPLETE.md │ ├── README.md │ ├── SNAPSHOT.md │ ├── button_specifications.md │ ├── data_sources_breakdown.md │ ├── git-inspector-mockup.png │ ├── git-inspector_screenshot.html │ ├── git-worktree.md │ ├── inspector_screenshot.html │ ├── launch_prompt.md │ ├── unified_git_inspector-v1.md │ ├── unified_git_inspector.md │ └── unified_inspector_mockup.html ├── git-worktree.md ├── index-AS-plan.md ├── index.html ├── multi-claude-config-dirs-plan.md ├── plans │ └── usage-mixed-credits.md ├── release │ ├── deploy-codex-release.md │ ├── v2-draft.md │ └── v2.0-notes.md ├── schemas │ └── session_event.schema.json ├── screenshots │ └── .gitkeep ├── search-architecture.md ├── session-images-v2.md ├── session-storage-format.md ├── session-viewer-terminal-raw.md ├── snippets │ ├── README.md │ ├── Sessions-snippets.md │ ├── deployment-playbook.md │ └── dmg-deployment-snippets.md ├── sparkle-updates.md ├── summaries │ ├── 2025-09.md │ ├── 2025-10.md │ └── 2025-11.md ├── updates │ ├── InfoPlist-snippet.xml │ ├── PR-DESCRIPTION.md │ ├── dev-hints.md │ ├── release-cookbook.md │ ├── sparkle-spec.md │ ├── spm-setup.md │ └── test-plan.md ├── v2.1-QA.md ├── viewbridge-errors.md ├── vision │ └── agent-sessions-ide-wrapper.md └── xcodeproj-add-files-with-system-tools.md ├── scripts ├── analyze_sessions.py ├── capture_analytics_screenshot.sh ├── probe_scan_output │ ├── claude_missing_to_restore.txt │ ├── claude_probe_sessions.txt │ ├── claude_restore_candidates.txt │ ├── claude_restore_notfound.txt │ ├── claude_restored.txt │ ├── codex_legacy_tmp_probes_20251106-105512.txt │ ├── codex_legacy_tmp_probes_20251106-105607.txt │ ├── codex_legacy_tmp_probes_20251106-105627.txt │ └── codex_probe_sessions.txt ├── purge_codex_legacy_tmp_probes.sh ├── restore_claude_from_manifest.sh ├── scan_probe_sessions.sh ├── xcode_add_file.rb ├── xcode_add_unit_test_target.rb ├── xcode_remove_file.rb └── xcode_remove_from_target.rb └── tools ├── CLAUDE_USAGE_README.md ├── add_analytics_to_xcode.py ├── analytics ├── __pycache__ │ └── tool_call_audit.cpython-310.pyc ├── dashboard.html ├── discover_fields.py ├── prototype_metrics.py └── tool_call_audit.py ├── claude_usage_capture.sh ├── demo_usage_capture.sh ├── discover_vars.sh ├── extract_snippets.sh ├── list-claude-sessions.py ├── release ├── build_sign_notarize_release.sh ├── bump-version.sh ├── deploy ├── deploy-agent-sessions.sh ├── deploy_codex_release.sh ├── generate-changelog.sh ├── rollback-release.sh └── verify-deployment.sh ├── sessions_audit.sh ├── test_cleanup.sh ├── test_smoke.sh ├── test_tmux_claude_launch.sh └── test_usage_parsing.sh /.claude/analytics-layout-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.claude/analytics-layout-spec.md -------------------------------------------------------------------------------- /.claude/skills/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.claude/skills/deploy.md -------------------------------------------------------------------------------- /.git-tools/edit_msg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.git-tools/edit_msg.sh -------------------------------------------------------------------------------- /.git-tools/reword_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.git-tools/reword_all.py -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.mailmap -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.backup -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.backup-20251004-144534: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.backup-20251004-144534 -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.backup2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.backup2 -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.bak -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.bak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.bak2 -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.bak3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.bak3 -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.final -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.fix -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/project.pbxproj.fix2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/project.pbxproj.fix2 -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/xcshareddata/xcschemes/AgentSessions.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/xcshareddata/xcschemes/AgentSessions.xcscheme -------------------------------------------------------------------------------- /AgentSessions.xcodeproj/xcshareddata/xcschemes/AgentSessionsLogicTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions.xcodeproj/xcshareddata/xcschemes/AgentSessionsLogicTests.xcscheme -------------------------------------------------------------------------------- /AgentSessions/AgentSessions.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/AgentSessions.entitlements -------------------------------------------------------------------------------- /AgentSessions/AgentSessionsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/AgentSessionsApp.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Models/AnalyticsData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Models/AnalyticsData.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Models/AnalyticsDateRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Models/AnalyticsDateRange.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/README.md -------------------------------------------------------------------------------- /AgentSessions/Analytics/Repositories/AnalyticsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Repositories/AnalyticsRepository.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Services/AnalyticsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Services/AnalyticsService.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Utilities/AnalyticsColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Utilities/AnalyticsColors.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Utilities/AnalyticsDesignTokens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Utilities/AnalyticsDesignTokens.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Views/AgentBreakdownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Views/AgentBreakdownView.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Views/AnalyticsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Views/AnalyticsView.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Views/AnalyticsWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Views/AnalyticsWindowController.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Views/SessionsChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Views/SessionsChartView.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Views/StatsCardsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Views/StatsCardsView.swift -------------------------------------------------------------------------------- /AgentSessions/Analytics/Views/TimeOfDayHeatmapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Analytics/Views/TimeOfDayHeatmapView.swift -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/AxisGridline.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/AxisGridline.colorset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/CardBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/CardBackground.colorset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/HeatmapCellEmpty.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/HeatmapCellEmpty.colorset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/MenuIconClaude.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/MenuIconClaude.imageset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/MenuIconClaude.imageset/MenuIconClaude-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/MenuIconClaude.imageset/MenuIconClaude-18.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/MenuIconClaude.imageset/MenuIconClaude-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/MenuIconClaude.imageset/MenuIconClaude-36.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/MenuIconCodex.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/MenuIconCodex.imageset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/MenuIconCodex.imageset/MenuIconCodex-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/MenuIconCodex.imageset/MenuIconCodex-18.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/MenuIconCodex.imageset/MenuIconCodex-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/MenuIconCodex.imageset/MenuIconCodex-36.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/chatgpt_8bit_alpha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/chatgpt_8bit_alpha.imageset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/chatgpt_8bit_alpha.imageset/chatgpt_8bit_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/chatgpt_8bit_alpha.imageset/chatgpt_8bit_alpha.png -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/claude_8bit_alpha.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/claude_8bit_alpha.imageset/Contents.json -------------------------------------------------------------------------------- /AgentSessions/Assets.xcassets/claude_8bit_alpha.imageset/claude_8bit_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Assets.xcassets/claude_8bit_alpha.imageset/claude_8bit_alpha.png -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeCLIEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeCLIEnvironment.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeFeatureFlag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeFeatureFlag.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeITermLauncher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeITermLauncher.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeResumeCommandBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeResumeCommandBuilder.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeResumeCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeResumeCoordinator.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeResumeSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeResumeSettings.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeResumeTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeResumeTypes.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeResume/ClaudeTerminalLauncher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeResume/ClaudeTerminalLauncher.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeStatus/ClaudeProbeConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeStatus/ClaudeProbeConfig.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeStatus/ClaudeProbeProject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeStatus/ClaudeProbeProject.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeStatus/ClaudeStatusService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeStatus/ClaudeStatusService.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeStatus/ClaudeUsageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeStatus/ClaudeUsageModel.swift -------------------------------------------------------------------------------- /AgentSessions/ClaudeStatus/ClaudeUsageStripView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/ClaudeStatus/ClaudeUsageStripView.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/CapPressureStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/CapPressureStore.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/CodexProbeCleanup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/CodexProbeCleanup.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/CodexProbeConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/CodexProbeConfig.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/CodexStatusService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/CodexStatusService.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/MenuBarPrefs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/MenuBarPrefs.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/UsageDisplayFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/UsageDisplayFormatter.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/UsageDisplayMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/UsageDisplayMode.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/UsageFreshness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/UsageFreshness.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/UsageStaleCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/UsageStaleCheck.swift -------------------------------------------------------------------------------- /AgentSessions/CodexStatus/UsageStripView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/CodexStatus/UsageStripView.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Models/CurrentGitStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Models/CurrentGitStatus.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Models/GitFileStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Models/GitFileStatus.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Models/GitSafetyCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Models/GitSafetyCheck.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Models/HistoricalGitContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Models/HistoricalGitContext.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Models/InspectorKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Models/InspectorKeys.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Services/CollapsedStateStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Services/CollapsedStateStore.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Services/GitContextExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Services/GitContextExtractor.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Services/GitSafetyAnalyzer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Services/GitSafetyAnalyzer.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Services/GitStatusCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Services/GitStatusCache.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Utilities/ColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Utilities/ColorExtensions.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Utilities/GitCommandRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Utilities/GitCommandRunner.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Utilities/GitInspectorWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Utilities/GitInspectorWindowController.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Views/ButtonActionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Views/ButtonActionsView.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Views/CurrentSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Views/CurrentSection.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Views/GitInspectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Views/GitInspectorView.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Views/HistoricalSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Views/HistoricalSection.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Views/SafetySection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Views/SafetySection.swift -------------------------------------------------------------------------------- /AgentSessions/GitInspector/Views/StatusHeroSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/GitInspector/Views/StatusHeroSection.swift -------------------------------------------------------------------------------- /AgentSessions/Indexing/AnalyticsIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Indexing/AnalyticsIndexer.swift -------------------------------------------------------------------------------- /AgentSessions/Indexing/DB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Indexing/DB.swift -------------------------------------------------------------------------------- /AgentSessions/Indexing/SessionMetaRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Indexing/SessionMetaRepository.swift -------------------------------------------------------------------------------- /AgentSessions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Info.plist -------------------------------------------------------------------------------- /AgentSessions/MenuBar/SettingsUpdateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/MenuBar/SettingsUpdateProxy.swift -------------------------------------------------------------------------------- /AgentSessions/MenuBar/StatusItemController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/MenuBar/StatusItemController.swift -------------------------------------------------------------------------------- /AgentSessions/MenuBar/UsageMenuBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/MenuBar/UsageMenuBar.swift -------------------------------------------------------------------------------- /AgentSessions/Model/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Model/Session.swift -------------------------------------------------------------------------------- /AgentSessions/Model/SessionEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Model/SessionEvent.swift -------------------------------------------------------------------------------- /AgentSessions/Model/SessionSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Model/SessionSource.swift -------------------------------------------------------------------------------- /AgentSessions/OpenCode/OpenCodeCLIEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/OpenCode/OpenCodeCLIEnvironment.swift -------------------------------------------------------------------------------- /AgentSessions/OpenCode/OpenCodeSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/OpenCode/OpenCodeSettings.swift -------------------------------------------------------------------------------- /AgentSessions/Resources/claude_usage_capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/claude_usage_capture.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_ping_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_ping_test.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_probe_marker_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_probe_marker_test.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_status_after_marker_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_status_after_marker_test.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_status_capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_status_capture.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_status_min_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_status_min_test.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_status_quick_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_status_quick_test.sh -------------------------------------------------------------------------------- /AgentSessions/Resources/codex_status_tui_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resources/codex_status_tui_test.sh -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexCLIEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexCLIEnvironment.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexLaunchMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexLaunchMode.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexResumeCommandBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexResumeCommandBuilder.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexResumeCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexResumeCoordinator.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexResumeLauncher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexResumeLauncher.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexResumeSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexResumeSettings.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexResumeSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexResumeSheet.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CodexVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CodexVersion.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/CommandExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/CommandExecutor.swift -------------------------------------------------------------------------------- /AgentSessions/Resume/ResumeHealthCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Resume/ResumeHealthCheck.swift -------------------------------------------------------------------------------- /AgentSessions/Search/SearchCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Search/SearchCoordinator.swift -------------------------------------------------------------------------------- /AgentSessions/Services/AppAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/AppAppearance.swift -------------------------------------------------------------------------------- /AgentSessions/Services/ClaudeSessionIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/ClaudeSessionIndexer.swift -------------------------------------------------------------------------------- /AgentSessions/Services/ClaudeSessionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/ClaudeSessionParser.swift -------------------------------------------------------------------------------- /AgentSessions/Services/GeminiCLIEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/GeminiCLIEnvironment.swift -------------------------------------------------------------------------------- /AgentSessions/Services/GeminiCLISettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/GeminiCLISettings.swift -------------------------------------------------------------------------------- /AgentSessions/Services/GeminiHashResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/GeminiHashResolver.swift -------------------------------------------------------------------------------- /AgentSessions/Services/GeminiSessionDiscovery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/GeminiSessionDiscovery.swift -------------------------------------------------------------------------------- /AgentSessions/Services/GeminiSessionIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/GeminiSessionIndexer.swift -------------------------------------------------------------------------------- /AgentSessions/Services/GeminiSessionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/GeminiSessionParser.swift -------------------------------------------------------------------------------- /AgentSessions/Services/LayoutMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/LayoutMode.swift -------------------------------------------------------------------------------- /AgentSessions/Services/OpenCodeSessionDiscovery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/OpenCodeSessionDiscovery.swift -------------------------------------------------------------------------------- /AgentSessions/Services/OpenCodeSessionIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/OpenCodeSessionIndexer.swift -------------------------------------------------------------------------------- /AgentSessions/Services/OpenCodeSessionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/OpenCodeSessionParser.swift -------------------------------------------------------------------------------- /AgentSessions/Services/SessionDiscovery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/SessionDiscovery.swift -------------------------------------------------------------------------------- /AgentSessions/Services/SessionIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/SessionIndexer.swift -------------------------------------------------------------------------------- /AgentSessions/Services/SessionTranscriptBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/SessionTranscriptBuilder.swift -------------------------------------------------------------------------------- /AgentSessions/Services/SessionViewMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/SessionViewMode.swift -------------------------------------------------------------------------------- /AgentSessions/Services/TerminalModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/TerminalModels.swift -------------------------------------------------------------------------------- /AgentSessions/Services/TranscriptCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/TranscriptCache.swift -------------------------------------------------------------------------------- /AgentSessions/Services/TranscriptRenderMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/TranscriptRenderMode.swift -------------------------------------------------------------------------------- /AgentSessions/Services/TranscriptTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/TranscriptTheme.swift -------------------------------------------------------------------------------- /AgentSessions/Services/UnifiedSessionIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/UnifiedSessionIndexer.swift -------------------------------------------------------------------------------- /AgentSessions/Services/WindowFocusCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Services/WindowFocusCoordinator.swift -------------------------------------------------------------------------------- /AgentSessions/Support/AppRuntime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Support/AppRuntime.swift -------------------------------------------------------------------------------- /AgentSessions/Support/ColumnVisibilityStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Support/ColumnVisibilityStore.swift -------------------------------------------------------------------------------- /AgentSessions/Support/FeatureFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Support/FeatureFlags.swift -------------------------------------------------------------------------------- /AgentSessions/Support/TypingActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Support/TypingActivity.swift -------------------------------------------------------------------------------- /AgentSessions/Update/GitHubClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/GitHubClient.swift -------------------------------------------------------------------------------- /AgentSessions/Update/SemanticVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/SemanticVersion.swift -------------------------------------------------------------------------------- /AgentSessions/Update/UpdateCheckModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/UpdateCheckModel.swift -------------------------------------------------------------------------------- /AgentSessions/Update/UpdateChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/UpdateChecker.swift -------------------------------------------------------------------------------- /AgentSessions/Update/UpdateDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/UpdateDefaults.swift -------------------------------------------------------------------------------- /AgentSessions/Update/UpdateModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/UpdateModels.swift -------------------------------------------------------------------------------- /AgentSessions/Update/UpdaterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Update/UpdaterController.swift -------------------------------------------------------------------------------- /AgentSessions/Utilities/FlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Utilities/FlowLayout.swift -------------------------------------------------------------------------------- /AgentSessions/Utilities/JSONLReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Utilities/JSONLReader.swift -------------------------------------------------------------------------------- /AgentSessions/Utilities/PreferencesWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Utilities/PreferencesWindowController.swift -------------------------------------------------------------------------------- /AgentSessions/Utilities/PrettyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Utilities/PrettyJSON.swift -------------------------------------------------------------------------------- /AgentSessions/Utilities/SplitViewAutosave.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Utilities/SplitViewAutosave.swift -------------------------------------------------------------------------------- /AgentSessions/Utilities/WindowAutosave.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Utilities/WindowAutosave.swift -------------------------------------------------------------------------------- /AgentSessions/Views/ClaudeSessionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/ClaudeSessionsView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/EventInspectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/EventInspectorView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/GeminiTranscriptView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/GeminiTranscriptView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/LoadingAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/LoadingAnimationView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/OpenCodeTranscriptView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/OpenCodeTranscriptView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesConstants.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+About.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+About.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+CLI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+CLI.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+General.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+General.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+Layout.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+MenuBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+MenuBar.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+OpenCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+OpenCode.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+Usage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+Usage.swift -------------------------------------------------------------------------------- /AgentSessions/Views/Preferences/PreferencesView+UsageProbes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/Preferences/PreferencesView+UsageProbes.swift -------------------------------------------------------------------------------- /AgentSessions/Views/PreferencesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/PreferencesView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/SearchFiltersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/SearchFiltersView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/SessionTerminalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/SessionTerminalView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/SessionTimelineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/SessionTimelineView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/SessionsListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/SessionsListView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/TranscriptPlainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/TranscriptPlainView.swift -------------------------------------------------------------------------------- /AgentSessions/Views/UnifiedSessionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessions/Views/UnifiedSessionsView.swift -------------------------------------------------------------------------------- /AgentSessionsLogicTests/ClaudeProbeConfigShim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsLogicTests/ClaudeProbeConfigShim.swift -------------------------------------------------------------------------------- /AgentSessionsLogicTests/ProbeAutoCleanupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsLogicTests/ProbeAutoCleanupTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/ClaudeProbeProjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/ClaudeProbeProjectTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/CodexResumeCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/CodexResumeCoordinatorTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/CodexResumeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/CodexResumeTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/CodexUsageParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/CodexUsageParserTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/ColumnVisibilityStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/ColumnVisibilityStoreTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/FavoritesStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/FavoritesStoreTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/GeminiParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/GeminiParserTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/Indexing/AnalyticsIndexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/Indexing/AnalyticsIndexerTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/Indexing/DBSmokeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/Indexing/DBSmokeTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/Info.plist -------------------------------------------------------------------------------- /AgentSessionsTests/SessionParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/SessionParserTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/SessionTitleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/SessionTitleTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/TranscriptBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/TranscriptBuilderTests.swift -------------------------------------------------------------------------------- /AgentSessionsTests/UpdateCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/AgentSessionsTests/UpdateCheckerTests.swift -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/GEMINI.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Fixtures/codex_050_legacy.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/codex_050_legacy.jsonl -------------------------------------------------------------------------------- /Resources/Fixtures/codex_051_usage.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/codex_051_usage.jsonl -------------------------------------------------------------------------------- /Resources/Fixtures/codex_052_raw.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/codex_052_raw.jsonl -------------------------------------------------------------------------------- /Resources/Fixtures/codex_053_rate_limit.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/codex_053_rate_limit.jsonl -------------------------------------------------------------------------------- /Resources/Fixtures/session_branch.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/session_branch.jsonl -------------------------------------------------------------------------------- /Resources/Fixtures/session_simple.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/session_simple.jsonl -------------------------------------------------------------------------------- /Resources/Fixtures/session_toolcall.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/Resources/Fixtures/session_toolcall.jsonl -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/agents.md -------------------------------------------------------------------------------- /docs/BigPicture 2-6 to 2-7 adr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/BigPicture 2-6 to 2-7 adr.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/Energy-and-Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/Energy-and-Performance.md -------------------------------------------------------------------------------- /docs/QA_SUMMARY_v2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/QA_SUMMARY_v2.1.md -------------------------------------------------------------------------------- /docs/Session Viewer 2 - for v2.6.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/Session Viewer 2 - for v2.6.5.md -------------------------------------------------------------------------------- /docs/Ventura-macOS13-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/Ventura-macOS13-compatibility.md -------------------------------------------------------------------------------- /docs/adr/0001-session-event-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/adr/0001-session-event-schema.md -------------------------------------------------------------------------------- /docs/adr/0002-adopt-sparkle-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/adr/0002-adopt-sparkle-2.md -------------------------------------------------------------------------------- /docs/adr/0003-sqlite-rollups-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/adr/0003-sqlite-rollups-index.md -------------------------------------------------------------------------------- /docs/analytics/ADDING_TO_XCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/ADDING_TO_XCODE.md -------------------------------------------------------------------------------- /docs/analytics/BUILD_SUCCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/BUILD_SUCCESS.md -------------------------------------------------------------------------------- /docs/analytics/HIDE_LOW_MESSAGE_DEFAULT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/HIDE_LOW_MESSAGE_DEFAULT.md -------------------------------------------------------------------------------- /docs/analytics/IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/analytics/PROGRESSIVE_PARSING_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/PROGRESSIVE_PARSING_COMPLETE.md -------------------------------------------------------------------------------- /docs/analytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/README.md -------------------------------------------------------------------------------- /docs/analytics/SESSION_COUNT_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/SESSION_COUNT_FIX.md -------------------------------------------------------------------------------- /docs/analytics/analytics-design-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/analytics-design-guide.md -------------------------------------------------------------------------------- /docs/analytics/analytics-indexing-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/analytics-indexing-checklist.md -------------------------------------------------------------------------------- /docs/analytics/field-catalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/field-catalog.yaml -------------------------------------------------------------------------------- /docs/analytics/gap-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/gap-report.md -------------------------------------------------------------------------------- /docs/analytics/metrics-matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/metrics-matrix.md -------------------------------------------------------------------------------- /docs/analytics/prototype-metrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/analytics/prototype-metrics.json -------------------------------------------------------------------------------- /docs/appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/appcast.xml -------------------------------------------------------------------------------- /docs/assets/AS-social-media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/AS-social-media.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-ClearDark-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-ClearDark-1024x1024@1x.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-ClearLight-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-ClearLight-1024x1024@1x.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-Dark-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-Dark-1024x1024@1x.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-Default-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-Default-1024x1024@1x.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-TintedDark-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-TintedDark-1024x1024@1x.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-TintedLight-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons Exports/agent-sessions-icons-iOS-TintedLight-1024x1024@1x.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons.icon/Assets/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons.icon/Assets/app-icon-1024.png -------------------------------------------------------------------------------- /docs/assets/agent-sessions-icons.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/agent-sessions-icons.icon/icon.json -------------------------------------------------------------------------------- /docs/assets/analytics-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/analytics-dark.png -------------------------------------------------------------------------------- /docs/assets/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/app-icon-1024.png -------------------------------------------------------------------------------- /docs/assets/app-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/app-icon-32.png -------------------------------------------------------------------------------- /docs/assets/app-icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/app-icon-512.png -------------------------------------------------------------------------------- /docs/assets/git-context-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/git-context-light.png -------------------------------------------------------------------------------- /docs/assets/screenshot-H-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/screenshot-H-window.png -------------------------------------------------------------------------------- /docs/assets/screenshot-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/screenshot-H.png -------------------------------------------------------------------------------- /docs/assets/screenshot-V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/screenshot-V.png -------------------------------------------------------------------------------- /docs/assets/screenshot-menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/screenshot-menubar.png -------------------------------------------------------------------------------- /docs/assets/screenshot-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/assets/screenshot-settings.png -------------------------------------------------------------------------------- /docs/claude-code-session-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/claude-code-session-format.md -------------------------------------------------------------------------------- /docs/claude-resume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/claude-resume.md -------------------------------------------------------------------------------- /docs/claude-usage-probe-cleanup-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/claude-usage-probe-cleanup-spec.md -------------------------------------------------------------------------------- /docs/codebase-0.1-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/codebase-0.1-review.md -------------------------------------------------------------------------------- /docs/codex-resume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/codex-resume.md -------------------------------------------------------------------------------- /docs/deploy-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/deploy-skill.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/focus-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/focus-architecture.md -------------------------------------------------------------------------------- /docs/focus_bug_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/focus_bug_prompt.md -------------------------------------------------------------------------------- /docs/git-inspector/IMPLEMENTATION_COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/IMPLEMENTATION_COMPLETE.md -------------------------------------------------------------------------------- /docs/git-inspector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/README.md -------------------------------------------------------------------------------- /docs/git-inspector/SNAPSHOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/SNAPSHOT.md -------------------------------------------------------------------------------- /docs/git-inspector/button_specifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/button_specifications.md -------------------------------------------------------------------------------- /docs/git-inspector/data_sources_breakdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/data_sources_breakdown.md -------------------------------------------------------------------------------- /docs/git-inspector/git-inspector-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/git-inspector-mockup.png -------------------------------------------------------------------------------- /docs/git-inspector/git-inspector_screenshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/git-inspector_screenshot.html -------------------------------------------------------------------------------- /docs/git-inspector/git-worktree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/git-worktree.md -------------------------------------------------------------------------------- /docs/git-inspector/inspector_screenshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/inspector_screenshot.html -------------------------------------------------------------------------------- /docs/git-inspector/launch_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/launch_prompt.md -------------------------------------------------------------------------------- /docs/git-inspector/unified_git_inspector-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/unified_git_inspector-v1.md -------------------------------------------------------------------------------- /docs/git-inspector/unified_git_inspector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/unified_git_inspector.md -------------------------------------------------------------------------------- /docs/git-inspector/unified_inspector_mockup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-inspector/unified_inspector_mockup.html -------------------------------------------------------------------------------- /docs/git-worktree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/git-worktree.md -------------------------------------------------------------------------------- /docs/index-AS-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/index-AS-plan.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/multi-claude-config-dirs-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/multi-claude-config-dirs-plan.md -------------------------------------------------------------------------------- /docs/plans/usage-mixed-credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/plans/usage-mixed-credits.md -------------------------------------------------------------------------------- /docs/release/deploy-codex-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/release/deploy-codex-release.md -------------------------------------------------------------------------------- /docs/release/v2-draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/release/v2-draft.md -------------------------------------------------------------------------------- /docs/release/v2.0-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/release/v2.0-notes.md -------------------------------------------------------------------------------- /docs/schemas/session_event.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/schemas/session_event.schema.json -------------------------------------------------------------------------------- /docs/screenshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/search-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/search-architecture.md -------------------------------------------------------------------------------- /docs/session-images-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/session-images-v2.md -------------------------------------------------------------------------------- /docs/session-storage-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/session-storage-format.md -------------------------------------------------------------------------------- /docs/session-viewer-terminal-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/session-viewer-terminal-raw.md -------------------------------------------------------------------------------- /docs/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/snippets/README.md -------------------------------------------------------------------------------- /docs/snippets/Sessions-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/snippets/Sessions-snippets.md -------------------------------------------------------------------------------- /docs/snippets/deployment-playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/snippets/deployment-playbook.md -------------------------------------------------------------------------------- /docs/snippets/dmg-deployment-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/snippets/dmg-deployment-snippets.md -------------------------------------------------------------------------------- /docs/sparkle-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/sparkle-updates.md -------------------------------------------------------------------------------- /docs/summaries/2025-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/summaries/2025-09.md -------------------------------------------------------------------------------- /docs/summaries/2025-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/summaries/2025-10.md -------------------------------------------------------------------------------- /docs/summaries/2025-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/summaries/2025-11.md -------------------------------------------------------------------------------- /docs/updates/InfoPlist-snippet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/InfoPlist-snippet.xml -------------------------------------------------------------------------------- /docs/updates/PR-DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/PR-DESCRIPTION.md -------------------------------------------------------------------------------- /docs/updates/dev-hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/dev-hints.md -------------------------------------------------------------------------------- /docs/updates/release-cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/release-cookbook.md -------------------------------------------------------------------------------- /docs/updates/sparkle-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/sparkle-spec.md -------------------------------------------------------------------------------- /docs/updates/spm-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/spm-setup.md -------------------------------------------------------------------------------- /docs/updates/test-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/updates/test-plan.md -------------------------------------------------------------------------------- /docs/v2.1-QA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/v2.1-QA.md -------------------------------------------------------------------------------- /docs/viewbridge-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/viewbridge-errors.md -------------------------------------------------------------------------------- /docs/vision/agent-sessions-ide-wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/vision/agent-sessions-ide-wrapper.md -------------------------------------------------------------------------------- /docs/xcodeproj-add-files-with-system-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/docs/xcodeproj-add-files-with-system-tools.md -------------------------------------------------------------------------------- /scripts/analyze_sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/analyze_sessions.py -------------------------------------------------------------------------------- /scripts/capture_analytics_screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/capture_analytics_screenshot.sh -------------------------------------------------------------------------------- /scripts/probe_scan_output/claude_missing_to_restore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/claude_missing_to_restore.txt -------------------------------------------------------------------------------- /scripts/probe_scan_output/claude_probe_sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/claude_probe_sessions.txt -------------------------------------------------------------------------------- /scripts/probe_scan_output/claude_restore_candidates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/claude_restore_candidates.txt -------------------------------------------------------------------------------- /scripts/probe_scan_output/claude_restore_notfound.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/probe_scan_output/claude_restored.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/probe_scan_output/codex_legacy_tmp_probes_20251106-105512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/codex_legacy_tmp_probes_20251106-105512.txt -------------------------------------------------------------------------------- /scripts/probe_scan_output/codex_legacy_tmp_probes_20251106-105607.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/codex_legacy_tmp_probes_20251106-105607.txt -------------------------------------------------------------------------------- /scripts/probe_scan_output/codex_legacy_tmp_probes_20251106-105627.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/codex_legacy_tmp_probes_20251106-105627.txt -------------------------------------------------------------------------------- /scripts/probe_scan_output/codex_probe_sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/probe_scan_output/codex_probe_sessions.txt -------------------------------------------------------------------------------- /scripts/purge_codex_legacy_tmp_probes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/purge_codex_legacy_tmp_probes.sh -------------------------------------------------------------------------------- /scripts/restore_claude_from_manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/restore_claude_from_manifest.sh -------------------------------------------------------------------------------- /scripts/scan_probe_sessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/scan_probe_sessions.sh -------------------------------------------------------------------------------- /scripts/xcode_add_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/xcode_add_file.rb -------------------------------------------------------------------------------- /scripts/xcode_add_unit_test_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/xcode_add_unit_test_target.rb -------------------------------------------------------------------------------- /scripts/xcode_remove_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/xcode_remove_file.rb -------------------------------------------------------------------------------- /scripts/xcode_remove_from_target.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/scripts/xcode_remove_from_target.rb -------------------------------------------------------------------------------- /tools/CLAUDE_USAGE_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/CLAUDE_USAGE_README.md -------------------------------------------------------------------------------- /tools/add_analytics_to_xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/add_analytics_to_xcode.py -------------------------------------------------------------------------------- /tools/analytics/__pycache__/tool_call_audit.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/analytics/__pycache__/tool_call_audit.cpython-310.pyc -------------------------------------------------------------------------------- /tools/analytics/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/analytics/dashboard.html -------------------------------------------------------------------------------- /tools/analytics/discover_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/analytics/discover_fields.py -------------------------------------------------------------------------------- /tools/analytics/prototype_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/analytics/prototype_metrics.py -------------------------------------------------------------------------------- /tools/analytics/tool_call_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/analytics/tool_call_audit.py -------------------------------------------------------------------------------- /tools/claude_usage_capture.sh: -------------------------------------------------------------------------------- 1 | ../AgentSessions/Resources/claude_usage_capture.sh -------------------------------------------------------------------------------- /tools/demo_usage_capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/demo_usage_capture.sh -------------------------------------------------------------------------------- /tools/discover_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/discover_vars.sh -------------------------------------------------------------------------------- /tools/extract_snippets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/extract_snippets.sh -------------------------------------------------------------------------------- /tools/list-claude-sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/list-claude-sessions.py -------------------------------------------------------------------------------- /tools/release/build_sign_notarize_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/build_sign_notarize_release.sh -------------------------------------------------------------------------------- /tools/release/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/bump-version.sh -------------------------------------------------------------------------------- /tools/release/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/deploy -------------------------------------------------------------------------------- /tools/release/deploy-agent-sessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/deploy-agent-sessions.sh -------------------------------------------------------------------------------- /tools/release/deploy_codex_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/deploy_codex_release.sh -------------------------------------------------------------------------------- /tools/release/generate-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/generate-changelog.sh -------------------------------------------------------------------------------- /tools/release/rollback-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/rollback-release.sh -------------------------------------------------------------------------------- /tools/release/verify-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/release/verify-deployment.sh -------------------------------------------------------------------------------- /tools/sessions_audit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/sessions_audit.sh -------------------------------------------------------------------------------- /tools/test_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/test_cleanup.sh -------------------------------------------------------------------------------- /tools/test_smoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/test_smoke.sh -------------------------------------------------------------------------------- /tools/test_tmux_claude_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/test_tmux_claude_launch.sh -------------------------------------------------------------------------------- /tools/test_usage_parsing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzyalex/agent-sessions/HEAD/tools/test_usage_parsing.sh --------------------------------------------------------------------------------