Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .archon/workflows/defaults/archon-architect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ nodes:
- For each finding: file, what's wrong, why it matters, estimated effort
depends_on: [scan-metrics]
context: fresh
denied_tools: [Write, Edit, Bash]
denied_tools: [Edit, Bash]
hooks:
PostToolUse:
- matcher: "Read"
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,6 @@ packages/server/.env
skills-lock.json
test-results/
.archon/ralph/

# Unrelated local project
md-quick-view/
Comment on lines +113 to +114
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

md-quick-view/ is being excluded from source control, which conflicts with this PR’s feature goal.

At Line 114, adding md-quick-view/ to .gitignore will prevent new app files from being committed. If this PR is intended to add the Electron app, this is a release-blocking mismatch (and the ESLint ignore at eslint.config.mjs Line 31 is the downstream counterpart).

Suggested fix
-# Unrelated local project
-md-quick-view/
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
# Unrelated local project
md-quick-view/
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.gitignore around lines 113 - 114, The .gitignore currently contains the
entry "md-quick-view/" which prevents the new Electron app files from being
committed; remove that line or change it to a local-only ignore (e.g., move to a
developer-specific ignore) so the app directory can be tracked, and ensure the
corresponding ignore in eslint.config.mjs (the md-quick-view ignore rule) is
updated/removed so ESLint and source control are consistent with the PR’s intent
to add the Electron app.

1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default tseslint.config(
'packages/web/components.json',
'packages/web/src/components/ui/**', // shadcn/ui auto-generated components
'packages/web/src/lib/utils.ts', // shadcn/ui utility file
'md-quick-view/**', // Unrelated local project
],
},

Expand Down

Large diffs are not rendered by default.