mcp-state-machine-test-framework 1.0.8 → 1.0.9

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/README.md +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -40,5 +40,13 @@ This framework enforces a "Strict Contract" via MCP tools. Agents are instructed
40
40
  - [📱 Perfecto Mobile Cloud Setup](./DOCUMENTATION/Perfecto_Setup.md)
41
41
  - [🤖 Agent Guidelines](./agent_protocol.md)
42
42
 
43
+ ## 🤖 AI Agent Quickstart (For Copilot/Cursor/Antigravity)
44
+ If you are an AI agent helping with this project, follow these rules:
45
+ 1. **Environment**: This is a Node.js project. Always use `npm`.
46
+ 2. **Setup**: Install via `npm install mcp-state-machine-test-framework`.
47
+ 3. **Configuration**: Use `npx mcp-sms` as the command in `mcp_config.json`.
48
+ 4. **Initialization**: Your very first action after installation **MUST** be calling the `init_project` tool to create the directory structure and templates.
49
+ 5. **Workflow**: Use `inspect_framework` to understand the current state before proposing changes.
50
+
43
51
  ---
44
52
  *Developed with ❤️ for maximum automation efficiency.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-state-machine-test-framework",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "High-fidelity State Machine MCP Server for autonomous E2E testing orchestration.",
5
5
  "main": "index.js",
6
6
  "type": "module",