[작동 프로토타입 · 심사 정확도 측정전 · 법률자문 아님] 모든 REJECT-Risk 스코어 및 판정은 공개 정책 문서 기반 추정이며 실 심사 데이터·통계에서 도출된 수치가 아닙니다. 이 도구는 법률 자문을 제공하지 않습니다.
Automated compliance analysis for game developers targeting multiple app stores
Mapae is an intelligent policy compliance auditor that analyzes game design documents against Google Play Store, Apple App Store, and Toss platform policies using advanced AI technology.
- Fast Mode: Quick analysis using Google Gemini 3.5 Flash API
- Precision Mode: Deep analysis with NotebookLM integration for grounded, citation-backed insights
- Google Play Store: Compliance with Google's developer policies
- Apple App Store: Review against App Store Review Guidelines
- Toss Platform: Korean market-specific regulations and policies
- Verdict System: PASS / WARNING / REJECT / UNKNOWN / ERROR
- Issue Detection: Automatic identification of policy violations
- Actionable Recommendations: Practical solutions for compliance
- Modern, responsive Streamlit interface
- Dark theme with glassmorphism effects
- Real-time analysis progress tracking
- PDF and Markdown report export
graph LR
A[User] -->|Upload Document| B[Streamlit UI]
B -->|Project Info| C{Analysis Mode}
C -->|Fast Mode| D[Gemini 3.5 Flash API]
C -->|Precision Mode| E[NotebookLM MCP]
D -->|AI Response| F[Response Parser]
E -->|Grounded Analysis| F
F -->|Structured Data| G[Report Generator]
G -->|Display| B
G -->|Export| H[PDF/Markdown]
style A fill:#4A90E2
style B fill:#7B68EE
style D fill:#50C878
style E fill:#FF6B6B
style G fill:#FFD700
- MapaeInput: Handles user input collection (game info, documents)
- MapaeJudge: AI-powered analysis engine with dual-mode support
- Streamlit UI: Premium interface with real-time feedback
- Report Generator: PDF and Markdown export functionality
| Category | Technology |
|---|---|
| Framework | Streamlit 1.32+ |
| AI Engine | Google Gemini 3.5 Flash |
| Deep Analysis | NotebookLM MCP |
| Document Processing | PyPDF2, python-docx |
| Report Generation | ReportLab, Markdown |
| Language | Python 3.8+ |
- Python 3.8 or higher
- Google AI API Key (Get one here)
- Node.js (for NotebookLM integration, optional)
- Clone the repository
git clone <repository-url>
cd Mapae- Install dependencies
pip install -r requirements.txt- Configure API credentials
Create or edit config.txt:
# Google AI API Key (Required)
GOOGLE_API_KEY=your_api_key_here
# NotebookLM Integration (Optional)
USE_NOTEBOOKLM=false
NOTEBOOKLM_NOTEBOOK_ID=- Run the application
streamlit run app.pyThe application will open in your browser at http://localhost:8501
-
Enter Project Information
- Game name
- Genre (Action, RPG, Puzzle, etc.)
- Target markets
-
Provide Game Design Document
- Upload PDF/DOCX files, or
- Paste text directly
-
Choose Analysis Mode
- Fast Mode: Quick results (5-10 seconds)
- Precision Mode: Deep analysis with citations (30-60 seconds)
-
Review Results
- View platform-specific verdicts
- Check identified issues
- Read actionable recommendations
-
Export Reports
- Download PDF report
- Export Markdown summary
- Uses Gemini 3.5 Flash API
- Quick turnaround time
- Suitable for initial reviews
- Grounded analysis with citations
- Policy document references
- Ideal for final compliance checks
| Verdict | Meaning | Action Required |
|---|---|---|
| ✅ PASS | Policy compliant | Ready for submission |
| Minor concerns | Review recommended | |
| ❌ REJECT | Policy violation | Must fix before submission |
| ❓ UNKNOWN | Unclear verdict | Manual review needed |
| 🔴 ERROR | Analysis failed | Retry or contact support |
Mapae/
├── app.py # Main Streamlit application
├── mapae_input.py # Input handling module
├── mapae_judge.py # AI analysis engine
├── config_loader.py # Configuration management
├── config.txt # User configuration (gitignored)
├── CONFIG_GUIDE.md # Configuration documentation
├── requirements.txt # Python dependencies
└── README.md # This file
| Variable | Description | Required |
|---|---|---|
GOOGLE_API_KEY |
Google AI API key | Yes |
USE_NOTEBOOKLM |
Enable NotebookLM integration | No |
NOTEBOOKLM_NOTEBOOK_ID |
NotebookLM notebook ID | No* |
*Required if USE_NOTEBOOKLM=true
See CONFIG_GUIDE.md for detailed configuration options.
- Dark Theme: Professional dark mode with high contrast
- Responsive Design: Works on desktop and tablet
- Real-time Feedback: Progress indicators and status updates
- Accessibility: WCAG 2.1 compliant color scheme
- Export Options: PDF and Markdown report generation
The application has been tested with:
- Various game genres (Action, RPG, Puzzle, Casual)
- Multiple document formats (PDF, DOCX, plain text)
- Different policy scenarios (gacha, IAP, ads, age ratings)
- Both analysis modes (Fast and Precision)
- API Keys: Stored locally in
config.txt(gitignored) - Data Processing: All analysis happens server-side
- No Data Storage: Documents are not permanently stored
- Privacy First: No user data collection or tracking
MIT License
Copyright (c) 2026 Mapae Project
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This is a portfolio project. If you'd like to suggest improvements:
- Fork the repository
- Create a feature branch
- Submit a pull request with detailed description
For questions or feedback about this project, please open an issue on GitHub.
- Google Gemini: For providing the AI analysis engine
- NotebookLM: For grounded, citation-backed analysis
- Streamlit: For the excellent web framework
- Open Source Community: For the amazing tools and libraries
Built with ❤️ for game developers