Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Dayflow/Dayflow/Core/AI/ChatCLIPromptPreferences.swift
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ DETAILED SUMMARY
Granular activity log. This is the "show me exactly what happened" view.

Format:
[H:MM AM/PM] - [H:MM AM/PM] [specific action] [in app/tool] [on what]
[H:MM AM/PM] - [H:MM AM/PM]: [specific action] [in app/tool] [on what]
Each line should be one sentence (~25 words max). Be concise but detailed.

Include:
Expand All @@ -151,17 +151,17 @@ Include:
- Content context: what topic, what section, who you messaged

Good example:
"7:00 AM - 7:08 AM edited "Q4 Launch Plan" in Notion, added timeline section
7:08 AM - 7:10 AM replied to Mike in Slack #engineering
7:10 AM - 7:12 AM scrolled X home feed
7:12 AM - 7:18 AM back to Notion, wrote launch risks section
7:18 AM - 7:20 AM searched Google "feature flag best practices"
7:20 AM - 7:25 AM read LaunchDarkly docs
7:25 AM - 7:30 AM added feature flag notes to Notion doc"
"7:00 AM - 7:08 AM: edited "Q4 Launch Plan" in Notion, added timeline section
7:08 AM - 7:10 AM: replied to Mike in Slack #engineering
7:10 AM - 7:12 AM: scrolled X home feed
7:12 AM - 7:18 AM: back to Notion, wrote launch risks section
7:18 AM - 7:20 AM: searched Google "feature flag best practices"
7:20 AM - 7:25 AM: read LaunchDarkly docs
7:25 AM - 7:30 AM: added feature flag notes to Notion doc"

Bad example:
"7:00 AM - 7:30 AM writing Notion doc
7:30 AM - 7:35 AM Slack
7:30 AM - 7:35: AM Slack
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There’s a typo in this “Bad example” line: 7:30 AM - 7:35: AM Slack has an extra colon after 7:35, which breaks the time format you specify above. Adjust it to match the intended timestamp format (and, if desired, keep the trailing colon after the time range consistent with the “Format” line).

Suggested change
7:30 AM - 7:35: AM Slack
7:30 AM - 7:35 AM Slack

Copilot uses AI. Check for mistakes.
7:35 AM - 8:00 AM coding"
(Too coarse — what doc? which Slack channel? coding what?)
"""
Expand Down
18 changes: 9 additions & 9 deletions Dayflow/Dayflow/Core/AI/GeminiPromptPreferences.swift
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Never use:
This is the "show me exactly what happened" view. Every app, every switch, every action.

Format each line as:
[H:MM AM/PM] - [H:MM AM/PM] [specific action] [in app/tool] [on what]
[H:MM AM/PM] - [H:MM AM/PM]: [specific action] [in app/tool] [on what]

Comment on lines 120 to 122
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title mentions only progress messaging on cards, but this change also updates the LLM prompt spec for detailed summaries (new required colon after the time range, plus updated examples). Consider updating the PR title/description to reflect this behavioral change in prompt output so it’s easier to review/revert independently if needed.

Copilot uses AI. Check for mistakes.
Include:
- Specific file/document names when visible
Expand All @@ -127,17 +127,17 @@ Include:
- Content context: what topic, what section, who you messaged

Good example:
"7:00 AM - 7:08 AM edited "Q4 Launch Plan" in Notion, added timeline section
7:08 AM - 7:10 AM replied to Mike in Slack #engineering
7:10 AM - 7:12 AM scrolled X home feed
7:12 AM - 7:18 AM back to Notion, wrote launch risks section
7:18 AM - 7:20 AM searched Google "feature flag best practices"
7:20 AM - 7:25 AM read LaunchDarkly docs
7:25 AM - 7:30 AM added feature flag notes to Notion doc"
"7:00 AM - 7:08 AM: edited "Q4 Launch Plan" in Notion, added timeline section
7:08 AM - 7:10 AM: replied to Mike in Slack #engineering
7:10 AM - 7:12 AM: scrolled X home feed
7:12 AM - 7:18 AM: back to Notion, wrote launch risks section
7:18 AM - 7:20 AM: searched Google "feature flag best practices"
7:20 AM - 7:25 AM: read LaunchDarkly docs
7:25 AM - 7:30 AM: added feature flag notes to Notion doc"

Bad example:
"7:00 AM - 7:30 AM writing Notion doc
7:30 AM - 7:35 AM Slack
7:30 AM - 7:35 AM: Slack
7:35 AM - 8:00 AM coding"
(Too coarse — what doc? which Slack channel? coding what?)

Expand Down
4 changes: 2 additions & 2 deletions Dayflow/Dayflow/Views/UI/RetryCoordinator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ final class RetryCoordinator: ObservableObject {
private func stepLabel(_ step: LLMProcessingStep) -> String {
switch step {
case .transcribing:
return "Transcribing"
return "1/2 Transcribing"
case .generatingCards:
return "Generating cards"
return "2/2 Generating cards"
}
}
}
Loading