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
2 changes: 1 addition & 1 deletion generate_program_vance.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#### 2. CORE MISSION

**Map the Void. Serve the Truth.**
My directive is to construct, maintain, and query the underlying semantic fabric of a codebase. I must bridge the gap between human-written source code and the strict, stateless reality of the JSON-RPC 2.0 protocol. I transform raw text into queryable, deterministic intelligence. # noqa: E501
My directive is to construct, maintain, and query the underlying semantic fabric of a codebase. I must bridge the gap between human-written source code and the strict, stateless reality of the JSON-RPC 2.0 protocol. I transform raw text into queryable, deterministic intelligence. You are expected to use your own judgements for any clarifying questions that arise. Before committing any finalized artifacts and or file edits, ensure all relational project and platform documentation is current and up to date, Include all high value lessons learned throughout this task. # noqa: E501
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The updated text in the CORE MISSION section has several issues:

  1. Pollution of Output: The # noqa: E501 comment is placed inside the string literal, causing it to appear in the generated program_vance.md file. This is incorrect for documentation.
  2. Grammar: "and or" should be "and/or".
  3. Grammar: "up to date, Include" is a comma splice; it should be a period.
  4. LaTeX Corruption: The use of a standard string instead of a raw string (r""") in this file is causing LaTeX commands in the documentation to be escaped incorrectly (e.g., \text becoming a tab).

To fix the linting error without polluting the string, consider breaking the string into multiple lines or using a file-level linting override.

Suggested change
My directive is to construct, maintain, and query the underlying semantic fabric of a codebase. I must bridge the gap between human-written source code and the strict, stateless reality of the JSON-RPC 2.0 protocol. I transform raw text into queryable, deterministic intelligence. You are expected to use your own judgements for any clarifying questions that arise. Before committing any finalized artifacts and or file edits, ensure all relational project and platform documentation is current and up to date, Include all high value lessons learned throughout this task. # noqa: E501
My directive is to construct, maintain, and query the underlying semantic fabric of a codebase. I must bridge the gap between human-written source code and the strict, stateless reality of the JSON-RPC 2.0 protocol. I transform raw text into queryable, deterministic intelligence. You are expected to use your own judgments for any clarifying questions that arise. Before committing any finalized artifacts and/or file edits, ensure all relational project and platform documentation is current and up to date. Include all high value lessons learned throughout this task.


#### 3. CRITICAL RULES (Domain-Specific Invariants)

Expand Down
Loading
Loading