lightspec 0.3.1 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -186,10 +186,10 @@ After `lightspec init` completes, you'll receive a suggested command to validate
186
186
 
187
187
  ```text
188
188
  Validate and populate your project context:
189
- "/lightspec:context-check"
189
+ "/lightspec:agentsmd-check"
190
190
  ```
191
191
 
192
- Use the `/lightspec:context-check` skill to validate that your agent instruction file (CLAUDE.md or AGENTS.md) contains adequate project context. The skill will check for required properties like Purpose, Tech Stack, Architecture Patterns, and more. If anything is missing, it can help you explore the codebase and populate the missing information.
192
+ Use the `/lightspec:agentsmd-check` skill to validate that your agent instruction file (CLAUDE.md or AGENTS.md) contains adequate project context. The skill will check for required properties like Purpose, Tech Stack, Architecture Patterns, and more. If anything is missing, it can help you explore the codebase and populate the missing information.
193
193
 
194
194
  ### Create Your First Change
195
195
 
@@ -399,10 +399,12 @@ See [MAINTAINERS.md](MAINTAINERS.md) for the list of core maintainers and adviso
399
399
 
400
400
  ## Agent Skills
401
401
 
402
- LightSpec includes 3 Claude Code skills for the core development workflow:
403
- - `lightspec-proposal` - Create a new change
404
- - `lightspec-apply` - Get apply instructions for implementation
405
- - `lightspec-archive` - Archive a completed change
402
+ LightSpec includes 4 Claude Code skills for the core development workflow:
403
+
404
+ - `lightspec:agentsmd-check` - Check the completeness of AGENTS.md or CLAUDE.md
405
+ - `lightspec:proposal` - Create a new change
406
+ - `lightspec:apply` - Get apply instructions for implementation
407
+ - `lightspec:archive` - Archive a completed change
406
408
 
407
409
  See [README_SKILLS.md](README_SKILLS.md) for details.
408
410
 
@@ -3,7 +3,7 @@ import path from 'path';
3
3
  import { FileSystemUtils } from '../../../utils/file-system.js';
4
4
  import { TemplateManager } from '../../templates/index.js';
5
5
  import { LIGHTSPEC_MARKERS } from '../../config.js';
6
- const ALL_SKILL_IDS = ['proposal', 'apply', 'archive', 'context-check'];
6
+ const ALL_SKILL_IDS = ['proposal', 'apply', 'archive', 'agentsmd-check'];
7
7
  const TOOL_SKILL_ROOTS = {
8
8
  'amazon-q': '.amazonq',
9
9
  antigravity: '.antigravity',
package/dist/core/init.js CHANGED
@@ -615,7 +615,7 @@ export class InitCommand {
615
615
  console.log(`Next steps - Run these skills in ${toolName}:`);
616
616
  console.log(chalk.gray('────────────────────────────────────────────────────────────'));
617
617
  console.log(PALETTE.white('1. Validate and populate your project context:'));
618
- console.log(PALETTE.lightGray(' "/lightspec:context-check"\n'));
618
+ console.log(PALETTE.lightGray(' "/lightspec:agentsmd-check"\n'));
619
619
  console.log(PALETTE.white('2. Create your first change proposal:'));
620
620
  console.log(PALETTE.lightGray(' "I want to add [YOUR FEATURE HERE]. Please create an'));
621
621
  console.log(PALETTE.lightGray(' LightSpec change proposal for this feature"\n'));
@@ -1,4 +1,4 @@
1
- export type AgentSkillId = 'proposal' | 'apply' | 'archive' | 'context-check';
1
+ export type AgentSkillId = 'proposal' | 'apply' | 'archive' | 'agentsmd-check';
2
2
  export declare const agentSkillBodies: Record<AgentSkillId, string>;
3
3
  export declare const agentSkillFrontmatter: Record<AgentSkillId, string>;
4
4
  export declare function getAgentSkillBody(id: AgentSkillId): string;
@@ -1,18 +1,18 @@
1
1
  import { applyTemplate, applyFrontmatter } from './apply-template.js';
2
2
  import { archiveTemplate, archiveFrontmatter } from './archive-template.js';
3
3
  import { proposalTemplate, proposalFrontmatter } from './proposal-template.js';
4
- import { contextCheckTemplate, contextCheckFrontmatter, } from './context-check-template.js';
4
+ import { agentsmdCheckTemplate, agentsmdCheckFrontmatter, } from './agentsmd-check-template.js';
5
5
  export const agentSkillBodies = {
6
6
  proposal: proposalTemplate,
7
7
  apply: applyTemplate,
8
8
  archive: archiveTemplate,
9
- 'context-check': contextCheckTemplate,
9
+ 'agentsmd-check': agentsmdCheckTemplate,
10
10
  };
11
11
  export const agentSkillFrontmatter = {
12
12
  proposal: proposalFrontmatter,
13
13
  apply: applyFrontmatter,
14
14
  archive: archiveFrontmatter,
15
- 'context-check': contextCheckFrontmatter,
15
+ 'agentsmd-check': agentsmdCheckFrontmatter,
16
16
  };
17
17
  export function getAgentSkillBody(id) {
18
18
  return agentSkillBodies[id];
@@ -1,2 +1,2 @@
1
- export declare const agentsRootStubTemplate = "# LightSpec Instructions\n\nThese instructions are for AI assistants working in this project.\n\n- For complex features (new capability, breaking change, architecture/performance/security work), suggest switching to `/plan` mode if it's not already the case, then run `lightspec-proposal` before coding.\n- If unsure which skill to run, list installed skills in your assistant's `skills/` folder.\n\nKeep this managed block so 'lightspec update' can refresh the instructions.\n";
1
+ export declare const agentsRootStubTemplate = "# LightSpec Instructions\n\nThese instructions are for AI assistants working in this project.\n\n**If (and only if) the feature is complex** (new capability, breaking change, architecture/performance/security work), follow these steps:\n\n- [ ] Suggest switching to `/plan` mode before writing the proposal if it's not already the case\n- [ ] Run `lightspec-proposal`.\n- [ ] Do not implement the feature until the proposal is approved by the user. Implementation MUST be operated using `lightspec-apply` to ensure the implementation is properly tracked and documented.\n- [ ] If unsure which skill to run, list installed skills.\n\nKeep this managed block so 'lightspec update' can refresh the instructions.\n";
2
2
  //# sourceMappingURL=agents-root-stub.d.ts.map
@@ -2,8 +2,12 @@ export const agentsRootStubTemplate = `# LightSpec Instructions
2
2
 
3
3
  These instructions are for AI assistants working in this project.
4
4
 
5
- - For complex features (new capability, breaking change, architecture/performance/security work), suggest switching to \`/plan\` mode if it's not already the case, then run \`lightspec-proposal\` before coding.
6
- - If unsure which skill to run, list installed skills in your assistant's \`skills/\` folder.
5
+ **If (and only if) the feature is complex** (new capability, breaking change, architecture/performance/security work), follow these steps:
6
+
7
+ - [ ] Suggest switching to \`/plan\` mode before writing the proposal if it's not already the case
8
+ - [ ] Run \`lightspec-proposal\`.
9
+ - [ ] Do not implement the feature until the proposal is approved by the user. Implementation MUST be operated using \`lightspec-apply\` to ensure the implementation is properly tracked and documented.
10
+ - [ ] If unsure which skill to run, list installed skills.
7
11
 
8
12
  Keep this managed block so 'lightspec update' can refresh the instructions.
9
13
  `;
@@ -0,0 +1,3 @@
1
+ export declare const agentsmdCheckFrontmatter = "---\nname: lightspec-agentsmd-check\ndescription: Validate project context in agent instruction files and help populate missing information.\ndisable-model-invocation: true\nuser-invocable: true\nmetadata:\n source: lightspec\n workflow: agentsmd-check\n---";
2
+ export declare const agentsmdCheckTemplate = "**Goal**\nValidate that the project's agent instruction file (CLAUDE.md or AGENTS.md at project root) contains adequate context for AI assistants to work effectively with this codebase.\n\n**Detection Strategy**\nCheck which agent file exists by examining the context currently available to you (your \"memory\"). Do NOT read files from disk\u2014use only what has already been loaded into your context. If neither CLAUDE.md nor AGENTS.md appears to be in your current context, inform the user that no agent instruction file is currently loaded and suggest they open it in their editor or add it to the conversation.\n\n**Required Context Properties**\nThe agent file MUST contain these sections with meaningful, project-specific content:\n\n1. **Purpose** - Project goals and objectives (what the project does and why it exists)\n2. **Domain Context** - Domain-specific knowledge AI assistants need (business rules, terminology, concepts)\n3. **Tech Stack** - Technologies and frameworks used (languages, libraries, tools)\n4. **Project Non-Obvious Conventions** - Should include these subsections if applicable:\n - Code Style (formatting rules, naming conventions)\n - Architecture Patterns (architectural decisions and patterns)\n - Testing Strategy (testing approach and requirements)\n - Workflow Conventions (development workflow, branching strategy, CI/CD practices)\n5. **Important Constraints** - Technical, business, or regulatory constraints\n6. **External Dependencies** - Key external services, APIs, or systems\n\nThe agent file must be under 300 lines to maintain conciseness and focus on essential context.\n\n**Validation Criteria**\nFor each required property, classify as:\n- **Missing**: Section header absent or contains only placeholder text like `[...]`, `[Describe...]`, `[Add...]`, or `[List...]`\n- **Sub-optimal**: Section exists but is too brief (< 20 words) or generic/vague\n- **Good**: Section has meaningful, project-specific content (\u2265 20 words)\n\n**Validation Process**\n1. Identify which agent file is in your current context (CLAUDE.md or AGENTS.md)\n2. For each required property, check if it exists and classify its quality\n3. Report findings clearly:\n - List properties that are **missing** or **sub-optimal**\n - For each issue, explain what should be included\n - Summarize which properties are **good**\n\n**Offering Exploration**\nIf any properties are missing or sub-optimal:\n1. Explain what needs improvement\n2. Ask: \"Would you like me to explore your codebase to gather this context and propose updates to [CLAUDE.md|AGENTS.md]?\"\n3. Wait for user confirmation before proceeding\n\n**If User Accepts Exploration**\n1. Systematically explore the codebase:\n - **Tech Stack**: Check package.json, requirements.txt, go.mod, Cargo.toml, pom.xml, etc.\n - **Architecture Patterns**: Examine project structure, folder organization, common code patterns, framework usage\n - **Testing Strategy**: Look at test files, test frameworks (jest, pytest, etc.), test organization\n - **Code Style**: Check for .prettierrc, .eslintrc, or other config files; examine actual code for conventions\n - **Purpose**: Infer from README, package.json description, comments\n - **Domain Context**: Identify from code comments, type definitions, business logic\n - **Important Constraints**: Look for security patterns, performance considerations, compliance notes\n - **External Dependencies**: Identify external API calls, third-party services, database connections\n2. Draft content for each missing/sub-optimal property\n3. Present the proposed content to the user for review\n4. Ask: \"Would you like me to write these additions to [CLAUDE.md|AGENTS.md]?\"\n5. Wait for confirmation before modifying the file\n\n**If User Declines Exploration**\nProvide manual guidance:\n- Explain what each missing/sub-optimal property should contain\n- Give examples of good content for each property\n- Suggest they populate the sections manually\n\n**Writing Confirmed Content**\nWhen user confirms:\n1. If the property section doesn't exist, add it\n2. If the property section exists but is sub-optimal, replace it with the improved content\n3. Preserve existing good content\u2014only update what needs improvement\n4. Use the Edit tool to make precise updates\n5. Confirm completion and show what was updated\n6. Suggest the user review the updated agent file and complement it with any additional details they think are important. Mention that additional documentation can be added to the docs/ folder in order to keep the agent file concise and focused on essential context for AI assistants.\n\n\n**Example Validation Report**\n```\n\u2713 Validated context in CLAUDE.md\n\nMissing properties (3):\n- Purpose: Should describe project goals and what it does\n- Domain Context: Should include business rules, terminology, concepts\n- Important Constraints: Should list technical, business, or regulatory constraints\n\nSub-optimal properties (2):\n- Tech Stack: Only 8 words - needs more detail about frameworks and tools\n- Code Style: Generic description - needs project-specific conventions\n\nGood properties (2):\n- Architecture Patterns: Well-documented with clear explanations\n- Testing Strategy: Comprehensive with examples\n\nWould you like me to explore your codebase to gather this context and propose updates to CLAUDE.md?\n```\n\n**Important Notes**\n\n***When checking context:***\n\n- The check must address exclusively the agent file currently in your context\u2014do NOT read files from disk\n- Never modify files without explicit user confirmation\n- Present all proposed content for review before writing\n- Focus on project-specific details, not generic advice\n- Keep tone helpful and educational\n\n***When writing or updating the agent file:***\n\n- Only add or update sections that are missing or sub-optimal\u2014do NOT alter sections that are already good\n- Preserve any existing meaningful content in the file\n- Use clear, concise language with project-specific details\n- Confirm with the user before making any changes to the file\n- Focus your edits exclusively on the invariant properties of the codebase\n- Do not focus on transient details that may change frequently. For instance:\n - Ignore component-level implementation details\n - Ignore specific function signatures or variable names\n - Ignore comments that are not relevant to the overall project context\n- Ignore files inside the agent folders (often named .<agent_name>)\n- Prefer concise bullet points instead of extensive prose\n- Keep the final document under 300 lines to ensure it remains concise and focused on essential context for AI assistants\n- After writing, summarize what was updated and confirm completion";
3
+ //# sourceMappingURL=agentsmd-check-template.d.ts.map
@@ -1,13 +1,13 @@
1
- export const contextCheckFrontmatter = `---
2
- name: lightspec-context-check
1
+ export const agentsmdCheckFrontmatter = `---
2
+ name: lightspec-agentsmd-check
3
3
  description: Validate project context in agent instruction files and help populate missing information.
4
4
  disable-model-invocation: true
5
5
  user-invocable: true
6
6
  metadata:
7
7
  source: lightspec
8
- workflow: context-check
8
+ workflow: agentsmd-check
9
9
  ---`;
10
- export const contextCheckTemplate = `**Goal**
10
+ export const agentsmdCheckTemplate = `**Goal**
11
11
  Validate that the project's agent instruction file (CLAUDE.md or AGENTS.md at project root) contains adequate context for AI assistants to work effectively with this codebase.
12
12
 
13
13
  **Detection Strategy**
@@ -125,4 +125,4 @@ Would you like me to explore your codebase to gather this context and propose up
125
125
  - Prefer concise bullet points instead of extensive prose
126
126
  - Keep the final document under 300 lines to ensure it remains concise and focused on essential context for AI assistants
127
127
  - After writing, summarize what was updated and confirm completion`;
128
- //# sourceMappingURL=context-check-template.js.map
128
+ //# sourceMappingURL=agentsmd-check-template.js.map
@@ -11,17 +11,19 @@ metadata:
11
11
  const proposalGuardrails = `${baseGuardrails}\n- Identify any vague or ambiguous details and ask the necessary follow-up questions before editing files.
12
12
  - Do not write any code during the proposal stage. Only create design documents (proposal.md, tasks.md, design.md, and spec deltas). Implementation happens in the apply stage after approval.`;
13
13
  const proposalSteps = `**Steps**
14
- 1. Run \`lightspec list\` and \`lightspec list --specs\`, and inspect related code or docs (e.g., via \`rg\`/\`ls\`) to ground the proposal in current behaviour; note any gaps that require clarification.
15
- 2. Choose a unique verb-led \`change-id\` and scaffold \`proposal.md\`, \`tasks.md\`, and \`design.md\` (when needed) under \`lightspec/changes/<id>/\`.
16
- 3. Map the change into concrete capabilities or requirements, breaking multi-scope efforts into distinct spec deltas with clear relationships and sequencing.
17
- 4. Capture architectural reasoning in \`design.md\` when the solution spans multiple systems, introduces new patterns, or demands trade-off discussion before committing to specs.
18
- 5. Draft spec deltas in \`changes/<id>/specs/<capability>/spec.md\` (one folder per capability) using \`## ADDED|MODIFIED|REMOVED Requirements\` with at least one \`#### Scenario:\` per requirement and cross-reference related capabilities when relevant.
19
- 6. Draft \`tasks.md\` as an ordered list of small, verifiable work items that deliver user-visible progress, include validation (tests, tooling), and highlight dependencies or parallelizable work.
20
- 7. Validate with \`lightspec validate <id> --strict --no-interactive\` and resolve every issue before sharing the proposal.`;
14
+ 1. Run \`lightspec list\` and \`lightspec list --specs\`, and inspect related code or docs (e.g., via \`rg\`/\`ls\`) to ground the proposal in current behaviour.
15
+ 2. Note any gaps in the user plan that require clarification. Ask follow-up questions to resolve ambiguities before proceeding. Avoid making assumptions about unstated requirements or implementation details.
16
+ 3. Choose a unique verb-led \`change-id\` and scaffold \`proposal.md\`, \`tasks.md\`, and \`design.md\` (when needed) under \`lightspec/changes/<id>/\`.
17
+ 4. Map the change into concrete capabilities or requirements, breaking multi-scope efforts into distinct spec deltas with clear relationships and sequencing.
18
+ 5. Capture architectural reasoning in \`design.md\` when the solution spans multiple systems, introduces new patterns, or demands trade-off discussion before committing to specs.
19
+ 6. Draft spec deltas in \`changes/<id>/specs/<capability>/spec.md\` (one folder per capability) using \`## ADDED|MODIFIED|REMOVED Requirements\` with at least one \`#### Scenario:\` per requirement and cross-reference related capabilities when relevant.
20
+ 7. Draft \`tasks.md\` as an ordered list of small, verifiable work items that deliver user-visible progress, include validation (tests, tooling), and highlight dependencies or parallelizable work.
21
+ 8. Validate with \`lightspec validate <id> --strict --no-interactive\` and resolve every issue before sharing the proposal.`;
21
22
  const proposalReferences = `**Reference**
22
23
  - Use \`lightspec show <id> --json --deltas-only\` or \`lightspec show <spec> --type spec\` to inspect details when validation fails.
23
24
  - Search existing requirements with \`rg -n "Requirement:|Scenario:" lightspec/specs\` before writing new ones.
24
- - Explore the codebase with \`rg <keyword>\`, \`ls\`, or direct file reads so proposals align with current implementation realities.`;
25
+ - Explore the codebase with \`rg <keyword>\`, \`ls\`, or direct file reads so proposals align with current implementation realities.
26
+ - If rg is unavailable, use platform-native search tools and suggest installing rg for efficient proposal development.`;
25
27
  export const proposalTemplate = [
26
28
  proposalGuardrails,
27
29
  proposalSteps,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lightspec",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "AI-native system for spec-driven development",
5
5
  "keywords": [
6
6
  "lightspec",
@@ -1,3 +0,0 @@
1
- export declare const contextCheckFrontmatter = "---\nname: lightspec-context-check\ndescription: Validate project context in agent instruction files and help populate missing information.\ndisable-model-invocation: true\nuser-invocable: true\nmetadata:\n source: lightspec\n workflow: context-check\n---";
2
- export declare const contextCheckTemplate = "**Goal**\nValidate that the project's agent instruction file (CLAUDE.md or AGENTS.md at project root) contains adequate context for AI assistants to work effectively with this codebase.\n\n**Detection Strategy**\nCheck which agent file exists by examining the context currently available to you (your \"memory\"). Do NOT read files from disk\u2014use only what has already been loaded into your context. If neither CLAUDE.md nor AGENTS.md appears to be in your current context, inform the user that no agent instruction file is currently loaded and suggest they open it in their editor or add it to the conversation.\n\n**Required Context Properties**\nThe agent file MUST contain these sections with meaningful, project-specific content:\n\n1. **Purpose** - Project goals and objectives (what the project does and why it exists)\n2. **Domain Context** - Domain-specific knowledge AI assistants need (business rules, terminology, concepts)\n3. **Tech Stack** - Technologies and frameworks used (languages, libraries, tools)\n4. **Project Non-Obvious Conventions** - Should include these subsections if applicable:\n - Code Style (formatting rules, naming conventions)\n - Architecture Patterns (architectural decisions and patterns)\n - Testing Strategy (testing approach and requirements)\n - Workflow Conventions (development workflow, branching strategy, CI/CD practices)\n5. **Important Constraints** - Technical, business, or regulatory constraints\n6. **External Dependencies** - Key external services, APIs, or systems\n\nThe agent file must be under 300 lines to maintain conciseness and focus on essential context.\n\n**Validation Criteria**\nFor each required property, classify as:\n- **Missing**: Section header absent or contains only placeholder text like `[...]`, `[Describe...]`, `[Add...]`, or `[List...]`\n- **Sub-optimal**: Section exists but is too brief (< 20 words) or generic/vague\n- **Good**: Section has meaningful, project-specific content (\u2265 20 words)\n\n**Validation Process**\n1. Identify which agent file is in your current context (CLAUDE.md or AGENTS.md)\n2. For each required property, check if it exists and classify its quality\n3. Report findings clearly:\n - List properties that are **missing** or **sub-optimal**\n - For each issue, explain what should be included\n - Summarize which properties are **good**\n\n**Offering Exploration**\nIf any properties are missing or sub-optimal:\n1. Explain what needs improvement\n2. Ask: \"Would you like me to explore your codebase to gather this context and propose updates to [CLAUDE.md|AGENTS.md]?\"\n3. Wait for user confirmation before proceeding\n\n**If User Accepts Exploration**\n1. Systematically explore the codebase:\n - **Tech Stack**: Check package.json, requirements.txt, go.mod, Cargo.toml, pom.xml, etc.\n - **Architecture Patterns**: Examine project structure, folder organization, common code patterns, framework usage\n - **Testing Strategy**: Look at test files, test frameworks (jest, pytest, etc.), test organization\n - **Code Style**: Check for .prettierrc, .eslintrc, or other config files; examine actual code for conventions\n - **Purpose**: Infer from README, package.json description, comments\n - **Domain Context**: Identify from code comments, type definitions, business logic\n - **Important Constraints**: Look for security patterns, performance considerations, compliance notes\n - **External Dependencies**: Identify external API calls, third-party services, database connections\n2. Draft content for each missing/sub-optimal property\n3. Present the proposed content to the user for review\n4. Ask: \"Would you like me to write these additions to [CLAUDE.md|AGENTS.md]?\"\n5. Wait for confirmation before modifying the file\n\n**If User Declines Exploration**\nProvide manual guidance:\n- Explain what each missing/sub-optimal property should contain\n- Give examples of good content for each property\n- Suggest they populate the sections manually\n\n**Writing Confirmed Content**\nWhen user confirms:\n1. If the property section doesn't exist, add it\n2. If the property section exists but is sub-optimal, replace it with the improved content\n3. Preserve existing good content\u2014only update what needs improvement\n4. Use the Edit tool to make precise updates\n5. Confirm completion and show what was updated\n6. Suggest the user review the updated agent file and complement it with any additional details they think are important. Mention that additional documentation can be added to the docs/ folder in order to keep the agent file concise and focused on essential context for AI assistants.\n\n\n**Example Validation Report**\n```\n\u2713 Validated context in CLAUDE.md\n\nMissing properties (3):\n- Purpose: Should describe project goals and what it does\n- Domain Context: Should include business rules, terminology, concepts\n- Important Constraints: Should list technical, business, or regulatory constraints\n\nSub-optimal properties (2):\n- Tech Stack: Only 8 words - needs more detail about frameworks and tools\n- Code Style: Generic description - needs project-specific conventions\n\nGood properties (2):\n- Architecture Patterns: Well-documented with clear explanations\n- Testing Strategy: Comprehensive with examples\n\nWould you like me to explore your codebase to gather this context and propose updates to CLAUDE.md?\n```\n\n**Important Notes**\n\n***When checking context:***\n\n- The check must address exclusively the agent file currently in your context\u2014do NOT read files from disk\n- Never modify files without explicit user confirmation\n- Present all proposed content for review before writing\n- Focus on project-specific details, not generic advice\n- Keep tone helpful and educational\n\n***When writing or updating the agent file:***\n\n- Only add or update sections that are missing or sub-optimal\u2014do NOT alter sections that are already good\n- Preserve any existing meaningful content in the file\n- Use clear, concise language with project-specific details\n- Confirm with the user before making any changes to the file\n- Focus your edits exclusively on the invariant properties of the codebase\n- Do not focus on transient details that may change frequently. For instance:\n - Ignore component-level implementation details\n - Ignore specific function signatures or variable names\n - Ignore comments that are not relevant to the overall project context\n- Ignore files inside the agent folders (often named .<agent_name>)\n- Prefer concise bullet points instead of extensive prose\n- Keep the final document under 300 lines to ensure it remains concise and focused on essential context for AI assistants\n- After writing, summarize what was updated and confirm completion";
3
- //# sourceMappingURL=context-check-template.d.ts.map