بنقرة واحدة
fix-feature-bug
Fix Feature Bug
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Fix Feature Bug
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Canonical turn protocol for agents writing to Neotoma. Bounded retrieval on the user message, store user message PART_OF conversation with REFERS_TO edges to retrieved entities, store assistant reply the same way. Use this skill in any agent loop that should persist conversation state to Neotoma.
Session-end audit. Files remaining work as task entities and lists them as bullets, verifies all data intended for Neotoma storage from this session is actually stored, and persists what's missing. Invoke at the natural close of a working session, before context is lost.
Mid-session status report. Summarizes what's been achieved so far this session and what work remains, in succinct qualitative prose and bullets with only light technical detail. Read-only — stores nothing, files nothing. Invoke any time to take stock without closing the session.
Close a Neotoma working session — store the assistant reply and a session-close summary.
Retrieve the bounded context for the current session — recent interactions and relevant entities.
Begin a Neotoma working session — open a conversation and record the opening interaction.
| name | fix_feature_bug |
| description | Fix Feature Bug |
Fix a bug in a feature or module.
Configuration is read from foundation-config.yaml.
This workflow can also be triggered automatically via .claude/rules/bug_fix_detection.md (or foundation/agent_instructions/cursor_rules/bug_fix_detection.md) when you mention bug/error-related patterns in natural language (e.g., "bug", "error", "fix", "broken"). Both paths execute the same workflow.
Load configuration:
foundation-config.yaml for bug fix settingsIdentify feature/module from error, path, or context.
Load relevant documents:
Classify bug (if error classification configured):
Apply correction rules:
Always add a regression test.
Run tests:
Output:
If development.bug_fix.error_classification.enabled: true in foundation-config:
Bug fix workflow uses settings from foundation-config.yaml:
development:
bug_fix:
enabled: true
error_classification:
enabled: false # Enable if you have error classification system
classes:
- name: "Class 1"
description: "Implementation bug"
correction: "Patch code only"
- name: "Class 2"
description: "Spec bug"
correction: "Update spec first, then code"
- name: "Class 3"
description: "Architectural bug"
correction: "Update architecture docs first"
require_regression_test: true
test_commands: # Optional, repo-specific test commands
- "npm test"
- "npm run test:integration"
feature_id or module_name (optional): The feature/module identifier to fix