slopwatch_setup_rules
Create and enforce AI accountability by generating a .cursorrules file for your project directory, ensuring alignment between AI promises and delivered outcomes.
Instructions
Generate .cursorrules file with AI accountability enforcement
Input Schema
Name | Required | Description | Default |
---|---|---|---|
overwrite | No | Whether to overwrite existing .cursorrules file | |
project_path | Yes | Path to project directory where .cursorrules should be created |
Input Schema (JSON Schema)
{
"properties": {
"overwrite": {
"default": false,
"description": "Whether to overwrite existing .cursorrules file",
"type": "boolean"
},
"project_path": {
"description": "Path to project directory where .cursorrules should be created",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}