Mize is a strongly typed "filesystem" for the age of connectivity, elevating the Unix file philosophy into modern distributed computing.
packages/
├── mize/ # Core Mize framework (Rust)
├── marts/ # Mize parts collection (Rust/TypeScript)
├── mme/ # Mize Module Environment (Rust)
├── ppc/ # Platform-specific components
├── vic/ # Victor CLI tool
└── ac_mize_macros/# Mize macros
To understand the main components of the architecture you canr efer to architecture.md.
Before making any code changes other than the changelog, you must follow this two-step process:
- Always ask at least one clarifying question about the user's request
- Understand the full scope and context of what they're asking for
- Clarify any ambiguous requirements or edge cases
- Ask about preferred approaches if multiple solutions exist
- Confirm the expected behavior and user experience
- After receiving clarification, present a detailed implementation plan
- Break down the work into specific, actionable steps
- Identify which files will be created, modified, or deleted
- Explain the technical approach and any architectural decisions
- Highlight any potential risks, trade-offs, or dependencies
- Estimate the complexity and scope of changes
- Wait for explicit user approval before proceeding with any code changes
- User must explicitly approve the plan with words like "yes", "approved", "proceed", "go ahead", or similar
- If the user suggests modifications to the plan, incorporate them and seek re-approval
- Do not assume silence or ambiguous responses mean approval
- This process may be skipped only for trivial changes like fixing obvious typos or formatting
- When in doubt, always follow the full process rather than assuming an exception applies
- User: "Add a login form to the app"
- Assistant: "I'd like to clarify a few things about the login form: [questions]"
- User: [provides answers]
- Assistant: "Based on your requirements, here's my implementation plan: [detailed plan]. Does this approach look good to you?"
- User: "Yes, that looks good"
- Assistant: [writes plan to file].
- Assistant: [proceeds with implementation].