Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
}
26 changes: 25 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,28 @@ next-env.d.ts

# firebase
firebase-debug.log
firestore-debug.log
firestore-debug.log
# AI Development Tools (local development only)
# BMAD Core Framework
.bmad-core/
AGENTS.md

# Serena Agent System
.serena/

# Claude Code Assistant Files
.claude/
CLAUDE.md

# Gemini AI Coder Agent Files
.gemini/

# GitHub AI Tools and Templates
.github/

# Project Planning Documents (local development only)
# Keep docs/blueprint.md in git (app specifications)
# Exclude project management documents
docs/prd/
docs/stories/
docs/architecture/
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"chat.agent.enabled": true,
"chat.agent.maxRequests": 15,
"github.copilot.chat.agent.runTasks": true,
"chat.mcp.discovery.enabled": true,
"github.copilot.chat.agent.autoFix": true,
"chat.tools.autoApprove": false
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This tool is built for educational and demonstrative purposes to showcase how th

## Reference

This tool is based on the **MAESTRO (Malicious Agent Evasion, Strategy, and Threat Response Operations)** framework for agentic AI threat modeling, as detailed in the Cloud Security Alliance (CSA) publication:
This tool is based on the **MAESTRO** framework for agentic AI threat modeling, as detailed in the Cloud Security Alliance (CSA) publication:

- **Paper**: [Agentic AI Threat Modeling Framework: MAESTRO](https://cloudsecurityalliance.org/blog/2025/02/06/agentic-ai-threat-modeling-framework-maestro)

Expand Down Expand Up @@ -35,8 +35,8 @@ Follow these instructions to set up and run the project locally.

1. **Clone the repository:**
```bash
git clone <repository-url>
cd <repository-directory>
git clone https://github.com/kenhuangus/MAESTRO.git
cd MAESTRO
```

2. **Install dependencies:**
Expand Down
Loading