codanna
01Cursor rule Cursor
When any request involves understanding, exploring, or analyzing code.
Cursor rule Cursor
When any request involves understanding, exploring, or analyzing code.
Cursor rule Cursor
Foundry MCP: CLI tool and MCP server for deterministic project management and AI coding assistant integration. Manages project specifications in /.foundry/ directory structure.
Cursor rule Cursor
// All commands: async fn execute(args: XxxArgs) -> Result pub async fn execute(args: CreateProjectArgs) -> Result { validateargs(&args).context("Invalid arguments")?; let result = performoperation(&args).context("Operation failed")?; Ok(buildresponse(result)) }.
Cursor rule Cursor
Based on established user memories and preferences, these guidelines ensure consistent alignment with user expectations and workflow patterns.
Cursor rule Cursor
Comprehensive guide for using Foundry MCP tools effectively in AI-assisted development.
Cursor rule Cursor
// ✅ Functional (Prefer) let content = tasks.iter() .filter(|task| task.status == TaskStatus::Completed) .map(|task| format!("- {}\n", task.title)) .collect:: ().
Cursor rule Cursor
Use this any time you are interacting with tests at all.