An on-ramp for AI risk management that bridges the gap between 200-page PDFs and actionable guidance. This tool helps practitioners identify relevant AI risk areas based on established frameworks like NIST AI RMF, OWASP Top 10 for LLM Apps, and EU AI Act.
Most practitioners know they need to manage AI risk, but the guidance lives in overwhelming documents and vendor dashboards. Faced with that overload, many freeze or follow checklists they don't understand. This tool is the on-ramp. Use it whether you embed a proprietary model, run open weights, or rely on a vendor feature already baked into your stack. It gets you from zero to one, then hands the baton back so you can tailor the next steps to your own reality.
This project uses a modular file architecture with separate HTML, CSS, and JavaScript files for maintainability while remaining fully portable.
ai-risk-praxis-tool/
βββ index.html # HTML structure and content
βββ css/
β βββ styles.css # All styling and themes
βββ js/
β βββ data.js # Questions and risk analysis data
β βββ app.js # Application logic and interactions
βββ README.md
βββ LICENSE
- Maintainability: Separate concerns (structure, style, behavior, data)
- Portability: Still works offline without a build process
- No Dependencies: Pure vanilla HTML/CSS/JavaScript
- Easy Updates: Content and logic changes don't require touching presentation
- Version Control: Cleaner git diffs for targeted changes
- 12 Strategic Questions: Covers domain classification, deployment scenarios, data handling, and risk controls
- Framework Integration: Maps responses to NIST AI RMF, OWASP Top 10 for LLM Apps 2025, and EU AI Act
- 2026 Content Updates: Includes latest threat landscape (MCP security, multi-agent orchestration, RAG poisoning, supply chain attacks)
- EU AI Act Timeline: Reflects current enforcement dates (Feb 2025, Aug 2025, Aug 2026)
- Contextual Guidance: Each question includes explanatory subtext with modern risk considerations
- Dark/Light Mode: Automatic theme switching with manual override
- Responsive Design: Works on desktop and mobile devices
- Narrative Analysis: Generates tailored risk assessment summary with practical next steps
- Domain Classification - Regulated vs. general-purpose applications
- Deployment Scenarios - SaaS, vendor features, homegrown AI
- System Capabilities - Conversational, text generation, media, code generation
- Audience Access - Internal, external, or mixed user base
- Data Sensitivity - Public, confidential, or highly sensitive inputs
- Runtime Data Access - RAG, vector search, live queries
- Training Method - Base model, fine-tuned with public or sensitive data
- Model Origin - Open source or proprietary
- Statefulness - Stateless vs. persistent conversation history
- Deployment Architecture - On-premises, cloud, hybrid, multi-cloud, edge
- Agency - Information-only vs. tool execution capabilities
- Autonomy Level - Human-in-the-loop vs. fully autonomous
- Download or clone the repository
- Open
index.htmlin any modern web browser - The tool works completely offline - no server required
This tool is deployed via GitHub Pages at:
https://kriskimmerle.github.io/ai-risk-praxis-tool/
To deploy your own fork:
- Fork this repository
- Go to Settings β Pages
- Select "Deploy from a branch"
- Choose
mainbranch and/ (root)folder - Save and wait for deployment (usually 1-2 minutes)
- NIST AI RMF 1.0: Risk management functions and categories with direct links to playbook sections
- OWASP Top 10 for LLM Apps 2025: Security vulnerabilities specific to large language models, including latest threats
- EU AI Act 2024: Regulatory requirements for AI systems in the European Union with enforcement timeline
This tool has been updated to reflect the current AI risk landscape as of February 2026:
- EU AI Act Enforcement Timeline: Prohibited practices (Feb 2025), GPAI rules (Aug 2025), high-risk requirements (Aug 2026)
- Model Context Protocol (MCP): Security considerations for agentic systems
- Multi-Agent Orchestration: Coordination risks and security challenges
- RAG Poisoning: Context window attacks via poisoned retrieval
- AI Supply Chain: Malicious model weights and backdoored packages
- OWASP AI Testing Guide: Reference to AITG v1 (Nov 2025) for testing methodologies
This is a static site with no build process. To modify:
- Edit content/questions:
js/data.js - Update styling:
css/styles.css - Change logic/behavior:
js/app.js - Modify structure:
index.html
Testing:
- Open
index.htmldirectly in a browser - Or run a local server:
python3 -m http.server 8000
This project is licensed under the MIT License - see the LICENSE file for details.
For informational purposes only. This tool provides preliminary guidance based on our interpretation of established frameworks and should not replace formal risk assessment, compliance audits, or professional advice.
Last Updated: February 1, 2026
Contributions are welcome! Please feel free to submit issues or pull requests. When updating framework mappings or risk considerations, please provide references to official documentation.