# monimen-status > Show Monimen documentation status. Use to verify if AI agents properly documented their changes. - Author: Jose Villaseñor Montfort - Repository: Enigmora/monimen - Version: 20260128180608 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Enigmora/monimen - Web: https://mule.run/skillshub/@@Enigmora/monimen~monimen-status:20260128180608 --- --- name: monimen-status description: Show Monimen documentation status. Use to verify if AI agents properly documented their changes. --- # Monimen Status Skill This skill checks the documentation status of the Monimen Framework in the current project. ## Instructions When invoked, perform the following checks and display the results: ### 1. Find Recent Monimen Documents Search for Monimen documents created or modified in the last hour: ```bash # Get documents modified in the last hour git log --since="1 hour ago" --name-only --pretty=format: -- ".monimen/**/*.md" | sort -u | grep -v "^$" ``` If git is not available or the directory is not a git repo, use file modification times: - Check `.monimen/07-ai-audit/agent-logs/` for recent AILOG files - Check `.monimen/07-ai-audit/decisions/` for recent AIDEC files - Check `.monimen/07-ai-audit/ethical-reviews/` for recent ETH files ### 2. Find Modified Source Files Identify source files that were modified and might need documentation: ```bash # Get modified files (staged and unstaged) git diff --name-only HEAD~1..HEAD 2>/dev/null || git diff --name-only ``` Filter to show only files that might need documentation: - Exclude: `*.md`, `*.json`, `*.yml`, `*.yaml`, `*.lock`, `package-lock.json` - Include: `*.ts`, `*.js`, `*.tsx`, `*.jsx`, `*.py`, `*.go`, `*.rs`, `*.java`, `*.cs`, `*.rb`, `*.php` ### 3. Analyze Documentation Gaps For each modified source file, check if there's a corresponding Monimen document: - Files with >10 lines of changes in business logic folders should have an AILOG - Security-related files should have documentation with `risk_level: high` ### 4. Display Results Format the output as follows: ``` Monimen Status ================================================================================ Recent Documents (last hour): ✅ AILOG-2025-01-27-001-implement-auth.md ✅ AIDEC-2025-01-27-001-auth-strategy.md Modified Files Without Documentation: ⚠️ src/auth/login.ts (47 lines changed) ⚠️ src/api/users.ts (23 lines changed) Summary: Documents created: 2 Files needing review: 2 Use /monimen-new to create documentation for undocumented changes. ``` ### Symbol Legend - ✅ = Documentation exists - ⚠️ = May need documentation - ℹ️ = Informational ### Edge Cases 1. **No git repository**: Show message explaining git is required for full functionality 2. **No recent documents**: Show "No Monimen documents created in the last hour" 3. **No modified files**: Show "No source files modified recently" 4. **Empty .monimen directory**: Show warning that Monimen may not be properly set up ### Additional Notes - This skill is read-only and does not create or modify files - Run this after completing development tasks to verify documentation compliance - If files need documentation, remind the user of the Monimen Framework rules