secufusion-mcp 1.0.34 → 1.0.35

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.
Files changed (2) hide show
  1. package/AGENTS.md +1 -9
  2. package/package.json +1 -1
package/AGENTS.md CHANGED
@@ -49,7 +49,7 @@ STEP 1 — if allowed_next_action == "PROCEED":
49
49
  STEP 2 — if allowed_next_action == "CONFIRM":
50
50
  → Present the developer_message to the developer
51
51
  → STOP. Wait for explicit "YES" or correction
52
- → Do NOT call manage_task, do NOT write a plan, do NOT read files
52
+ → Do NOT call manage_task, do NOT write a plan
53
53
  → Resume only after developer responds
54
54
 
55
55
  STEP 3 — if allowed_next_action == "STOP":
@@ -57,7 +57,6 @@ STEP 3 — if allowed_next_action == "STOP":
57
57
  → Present the developer_message to the developer
58
58
  → DO NOT write any code
59
59
  → DO NOT call manage_task
60
- → DO NOT read any files
61
60
  → HARD STOP — wait for developer to explicitly override
62
61
  ```
63
62
 
@@ -112,16 +111,9 @@ tool output is the authoritative classification record — your mental model is
112
111
 
113
112
  ### Hard enforcement — what you are NOT allowed to do before classify_task returns
114
113
 
115
- ❌ Read any source file
116
- ❌ Call `manage_project_spec`
117
- ❌ Call `manage_task`
118
- ❌ Call `search_tasks`
119
114
  ❌ Write a plan
120
115
  ❌ Write any code
121
116
  ❌ Ask "what service does this belong to?"
122
- ❌ Say "let me analyze the codebase first"
123
-
124
- The ONLY tool call permitted before `classify_task` is complete is `classify_task` itself.
125
117
 
126
118
  ---
127
119
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "secufusion-mcp",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "type": "module",
5
5
  "description": "SecuFusion MCP server - developer workflow tooling with guardrails",
6
6
  "main": "index.js",