-
{achievement.icon}
+
{achievement.icon}
{achievement.title}
@@ -1056,7 +1027,6 @@ export function SymphonyModal({
startContribution,
activeContributions,
completedContributions,
- cancelContribution,
finalizeContribution,
} = useSymphony();
@@ -1230,18 +1200,6 @@ export function SymphonyModal({
}, [selectedRepo, selectedIssue, startContribution, onStartContribution, handleBack]);
// Contribution actions
- const handlePause = useCallback(async (contributionId: string) => {
- await window.maestro.symphony.updateStatus({ contributionId, status: 'paused' });
- }, []);
-
- const handleResume = useCallback(async (contributionId: string) => {
- await window.maestro.symphony.updateStatus({ contributionId, status: 'running' });
- }, []);
-
- const handleCancel = useCallback(async (contributionId: string) => {
- await cancelContribution(contributionId, true);
- }, [cancelContribution]);
-
const handleFinalize = useCallback(async (contributionId: string) => {
await finalizeContribution(contributionId);
}, [finalizeContribution]);
@@ -1672,9 +1630,6 @@ export function SymphonyModal({
key={contribution.id}
contribution={contribution}
theme={theme}
- onPause={() => handlePause(contribution.id)}
- onResume={() => handleResume(contribution.id)}
- onCancel={() => handleCancel(contribution.id)}
onFinalize={() => handleFinalize(contribution.id)}
/>
))}
diff --git a/src/renderer/hooks/settings/CLAUDE.md b/src/renderer/hooks/settings/CLAUDE.md
new file mode 100644
index 00000000..5a56a44e
--- /dev/null
+++ b/src/renderer/hooks/settings/CLAUDE.md
@@ -0,0 +1,11 @@
+
+# Recent Activity
+
+
+
+### Jan 11, 2026
+
+| ID | Time | T | Title | Read |
+|----|------|---|-------|------|
+| #433 | 5:36 AM | 🔵 | History Default Setting Verified in Settings Hook | ~323 |
+
\ No newline at end of file
diff --git a/src/renderer/types/CLAUDE.md b/src/renderer/types/CLAUDE.md
new file mode 100644
index 00000000..d09de6f5
--- /dev/null
+++ b/src/renderer/types/CLAUDE.md
@@ -0,0 +1,11 @@
+
+# Recent Activity
+
+
+
+### Jan 11, 2026
+
+| ID | Time | T | Title | Read |
+|----|------|---|-------|------|
+| #442 | 5:37 AM | 🔵 | Achievement Action Extension Verified in Renderer Types | ~311 |
+
\ No newline at end of file
diff --git a/src/shared/CLAUDE.md b/src/shared/CLAUDE.md
new file mode 100644
index 00000000..7c9f7da2
--- /dev/null
+++ b/src/shared/CLAUDE.md
@@ -0,0 +1,12 @@
+
+# Recent Activity
+
+
+
+### Jan 11, 2026
+
+| ID | Time | T | Title | Read |
+|----|------|---|-------|------|
+| #428 | 5:36 AM | 🔵 | HistoryEntry Interface Fields Verified | ~378 |
+| #419 | 5:35 AM | 🔵 | History Constants and Types Verified in Shared Module | ~384 |
+
\ No newline at end of file
diff --git a/src/shared/symphony-types.ts b/src/shared/symphony-types.ts
index 1a0ad33e..217bdab4 100644
--- a/src/shared/symphony-types.ts
+++ b/src/shared/symphony-types.ts
@@ -216,6 +216,7 @@ export type ContributionStatus =
| 'creating_pr' // Creating draft PR
| 'running' // Auto Run in progress
| 'paused' // User paused
+ | 'completed' // Auto Run finished, PR still in draft
| 'completing' // Pushing final changes
| 'ready_for_review' // PR marked ready
| 'failed' // Failed (see error field)