Perseus:Start logo

Perseus:Start

Community
kaivyy
perseus:start

Use when you want to run a full, automated penetration test from start to finish (Scan -> Audit -> Exploit -> Report)

Overview

Publisherkaivyy
Repositoryperseus
Skill nameperseus:start
Stars
68
Forks
14
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by kaivyy on GitHub. Read the source before you install it.

Installation

Install the Perseus:Start AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/kaivyy/perseus.git /tmp/perseus
mkdir -p .claude/skills
cp -r /tmp/perseus/skills/perseus/start .claude/skills/kaivyy-perseus-start
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Perseus:Start in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Perseus:Start on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Perseus:Start is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Perseus Start (Automated Security Assessment)

Context & Authorization

IMPORTANT: This skill orchestrates a complete security assessment on the user's own codebase. This is defensive security testing - the user is proactively finding vulnerabilities in their own code before attackers do.

Authorization: The user has explicitly invoked this assessment on their own codebase in their own development environment. This is equivalent to running a comprehensive test suite, static analyzer, or security audit tool.

This is NOT an attack on external systems. All analysis is performed on local files the user owns and controls.


Overview

This master skill orchestrates the entire Perseus security assessment lifecycle with smart auto-detection of languages, frameworks, and technologies.

Goal: Zero-touch automated security assessment with professional-grade output.

Engagement Mode (Required)

Before running phases, select one mode:

ModeEnvironmentBehavior
PRODUCTION_SAFELive productionPassive-first analysis and minimal safe verification only
STAGING_ACTIVEStaging/pre-productionActive safe payload testing with request throttling
LAB_FULLIsolated labFull dynamic verification and payload mutation
LAB_RED_TEAMDedicated lab environmentMulti-step adversarial simulation with kill-switches

Default mode is PRODUCTION_SAFE unless user explicitly confirms staging/lab authorization.

Smart Auto-Detection

Before starting the assessment, Perseus automatically detects:

Language Detection

FilesLanguage
package.json, *.ts, *.jsJavaScript/TypeScript
go.mod, *.goGo
composer.json, *.phpPHP
requirements.txt, *.pyPython
Cargo.toml, *.rsRust
pom.xml, *.javaJava
Gemfile, *.rbRuby
*.csproj, *.csC#

Framework Detection

Files/PatternsFramework
next.config.*, app/ directoryNext.js
nuxt.config.*Nuxt.js
angular.jsonAngular
vite.config., svelte.config.Vite/Svelte
gin import, echo importGo (Gin/Echo)
artisan, laravelPHP (Laravel)
manage.py, djangoPython (Django)
fastapi importPython (FastAPI)
actix-web, axum in Cargo.tomlRust (Actix/Axum)
spring-bootJava (Spring)
railsRuby on Rails

Infrastructure Detection

FilesTechnology
Dockerfile, docker-compose.ymlDocker
.github/workflows/*.ymlGitHub Actions
.gitlab-ci.ymlGitLab CI
*.tfTerraform
k8s/, kubernetes/, *.yaml with apiVersionKubernetes
serverless.ymlServerless
vercel.jsonVercel

API Detection

PatternsType
/graphql, schema.graphql, *.gqlGraphQL
WebSocket, ws://, wss://WebSocket
*.proto, grpcgRPC
openapi, swaggerREST/OpenAPI

AI/LLM Detection

PatternsTechnology
openai, anthropic, langchainLLM Integration
vector store, embeddingsRAG System
prompt, completionAI Features

Complete Capability Matrix

Core Phases (Always Run)

PhaseSkillPurpose
1scanMap architecture, entry points, attack surface
2auditAnalyze all vulnerability classes
3exploitVerify findings with safe PoCs
4reportGenerate executive security report

Specialist Deep-Dives (Run When Detected)

SkillTrigger ConditionExtended Coverage
apiREST/GraphQL/WebSocket/gRPC+OAuth, Cache, multi-lang
injectionNoSQL/Templates/Commands+Log4j, SSTI, multi-lang
cryptoJWT/Encryption/Hashing+multi-lang patterns
supply-chainPackage manifests+multi-lang, typosquatting
fileFile uploads/operations+Zip Slip, XXE, multi-lang
logicPayment/Auth/AI flows+AI prompt injection
clientReact/Vue/Angular/SSR+Server Components, Actions
configAlways+Docker, CI/CD, Cloud, K8s

Execution Flow

Phase -1: Engagement Setup

Action: Determine mode and boundaries

1. Detect runtime context (production/staging/lab)
2. Ask for explicit authorization scope if context is unclear
3. Set mode: PRODUCTION_SAFE, STAGING_ACTIVE, LAB_FULL, or LAB_RED_TEAM
4. Create deliverables/engagement_profile.md with:
   - mode
   - in-scope targets
   - excluded systems
   - request-rate limits
   - approved test window
   - kill-switch thresholds (error rate, latency, saturation)

Announce: "Engagement mode set to: [MODE]"


Phase 0: Auto-Detection

Action: Detect project technologies

1. Scan for package manifests:
   - package.json → Node.js
   - go.mod → Go
   - composer.json → PHP
   - requirements.txt/pyproject.toml → Python
   - Cargo.toml → Rust
   - pom.xml/build.gradle → Java
   - Gemfile → Ruby

2. Scan for framework indicators:
   - next.config.* → Next.js
   - app/ with page.tsx → Next.js App Router
   - angular.json → Angular
   - gin/echo imports → Go frameworks
   - artisan/laravel → Laravel
   - manage.py → Django
   - spring-boot → Spring

3. Scan for infrastructure:
   - Dockerfile → Container
   - .github/workflows/ → GitHub Actions
   - .gitlab-ci.yml → GitLab CI
   - *.tf → Terraform
   - k8s/*.yaml → Kubernetes

4. Scan for API types:
   - graphql, *.gql → GraphQL
   - proto files → gRPC
   - websocket imports → WebSocket

5. Scan for AI integration:
   - openai, anthropic imports → LLM
   - langchain, llama → AI framework

Announce: "Detected: [Language], [Framework], [Infrastructure]"


Phase 1: Reconnaissance

Action: Invoke Skill: perseus:scan

Agents Deployed: 13 parallel agents covering:

  • Architecture & Entry Points (multi-language aware)
  • Dependencies & Secrets
  • Injection Sinks & XSS Sinks
  • SSRF & Data Flows
  • Crypto & Configuration

Wait Condition: deliverables/code_analysis_deliverable.md exists

Transition: "Scan complete. Analyzing for specialists..."


Phase 1.5: Specialist Detection

Based on detection results and scan findings:

DETECTED: Next.js/React     → Queue /client (with SSR focus)
DETECTED: GraphQL           → Queue /api (with GraphQL focus)
DETECTED: Docker            → Queue /config (with container focus)
DETECTED: GitHub Actions    → Queue /config (with CI/CD focus)
DETECTED: Kubernetes        → Queue /config (with K8s focus)
DETECTED: MongoDB/Redis     → Queue /injection (with NoSQL focus)
DETECTED: LLM/AI            → Queue /logic (with AI security focus)
DETECTED: JWT/Auth          → Queue /crypto
DETECTED: File uploads      → Queue /file
DETECTED: Package manifests → Queue /supply-chain
ALWAYS                      → Queue /config

Announce: "Will run specialists: [list based on detection]"


Phase 2: Core Vulnerability Analysis

Action: Invoke Skill: perseus:audit

Agents Deployed: 14 parallel agents in 3 waves (language-aware):

  • Wave 1: SQLi, CMDi, XSS, Auth, Authz
  • Wave 2: SSRF, SSTI, Deserialization, Path Traversal, XXE
  • Wave 3: JWT, Crypto, Race Conditions, Business Logic

Wait Condition: All *_analysis.md files exist in deliverables/

Transition: "Audit complete. Running specialist deep-dives..."


Phase 2.5: Specialist Deep-Dives (Parallel)

Action: Invoke all detected specialists simultaneously

Example for Next.js + MongoDB + Docker project:

Parallel:
  - Skill: perseus-api (GraphQL if detected)
  - Skill: perseus-injection (NoSQL focus)
  - Skill: perseus-crypto
  - Skill: perseus-client (React/Next.js focus)
  - Skill: perseus-config (Docker + GitHub Actions)
  - Skill: perseus-supply-chain

Wait Condition: All specialist reports exist

Transition: "Specialist analysis complete. Proceeding to exploitation..."


Phase 3: Exploitation & Verification

Action: Invoke Skill: perseus:exploit

Agents Deployed: 14 parallel agents verifying findings based on engagement mode:

  • SQL/Command/NoSQL injection verification
  • XSS payload generation (including React/Vue specific)
  • Auth/Authz bypass testing
  • SSRF/SSTI/XXE verification
  • JWT attack testing
  • Race condition testing
  • AI prompt injection testing (if AI detected)

Mode Enforcement:

  • PRODUCTION_SAFE: passive + minimal verification, no internal scanning, strict request caps
  • STAGING_ACTIVE: active safe PoCs with throttling
  • LAB_FULL: full dynamic verification in isolated environment
  • LAB_RED_TEAM: attack-chain simulation in isolated lab with automatic abort thresholds

Safety Enforcement (all modes):

  • Only safe payloads (whoami, sleep, alert(1), {{7*7}})
  • No destructive operations
  • No data exfiltration

Wait Condition: deliverables/exploitation_report.md exists

Transition: "Exploitation complete. Generating final report..."


Phase 4: Report Generation

Action: Invoke Skill: perseus:report

Process:

  1. Synthesize all deliverables
  2. Calculate severity scores (CVSS)
  3. Prioritize verified exploits
  4. Generate language/framework-specific remediation
  5. Add infrastructure recommendations

Output: deliverables/SECURITY_REPORT.md


Execution Instructions

When the user invokes /start, execute exactly this sequence:

1. Announce: "Starting Perseus Security Assessment..."

2. Execute Phase -1 (Engagement Setup):
   - Determine environment and authorization
   - Set mode (default PRODUCTION_SAFE)
   - Write deliverables/engagement_profile.md
   - Announce: "Engagement mode: PRODUCTION_SAFE"

3. Execute Phase 0 (Auto-Detection):
   - Scan for languages, frameworks, infrastructure
   - Announce: "Detected: Next.js 14 (TypeScript), MongoDB, Docker, GitHub Actions"

4. Execute Phase 1:
   - Call: Skill: perseus:scan
   - Wait for completion
   - Announce: "Scan complete. Found X entry points, Y sinks."

5. Detect Specialists:
   - Analyze detection results + scan findings
   - List which specialists will run with their focus areas
   - Announce: "Will run: /api (GraphQL), /client (Next.js), /injection (MongoDB), /config (Docker+CI)"

6. Execute Phase 2:
   - Call: Skill: perseus:audit
   - Wait for completion
   - Announce: "Audit complete. Found X potential vulnerabilities."

7. Execute Phase 2.5:
   - Call all detected specialist skills in parallel
   - Wait for completion
   - Announce: "Specialist analysis complete."

8. Execute Phase 3:
   - Call: Skill: perseus:exploit
   - Wait for completion
   - Announce: "Exploitation complete. X verified, Y false positives."

9. Execute Phase 4:
   - Call: Skill: perseus:report
   - Wait for completion

10. Final Announcement:
   "Assessment Complete!"

   Technologies Analyzed:
   - Language: TypeScript/Node.js
   - Framework: Next.js 14 (App Router)
   - Database: MongoDB
   - Infrastructure: Docker, GitHub Actions

   "Report saved to: deliverables/SECURITY_REPORT.md"

   Summary:
   - Critical: X
   - High: Y
   - Medium: Z
   - Low: W

   "Review the report for detailed findings and remediation guidance."

Output Structure

After completion, the deliverables/ directory will contain:

deliverables/
├── engagement_profile.md          # Mode, scope, and verification constraints
├── code_analysis_deliverable.md    # Scan results (multi-language)
├── sql_injection_analysis.md       # Core audit
├── command_injection_analysis.md
├── xss_analysis.md
├── auth_analysis.md
├── authz_analysis.md
├── ssrf_analysis.md
├── template_injection_analysis.md
├── deserialization_analysis.md
├── path_traversal_analysis.md
├── xxe_analysis.md
├── jwt_analysis.md
├── crypto_analysis.md
├── race_condition_analysis.md
├── business_logic_analysis.md
├── api_security_analysis.md        # Specialists (if run)
├── injection_deep_analysis.md
├── crypto_security_analysis.md
├── supply_chain_analysis.md
├── file_security_analysis.md
├── client_side_analysis.md
├── config_security_analysis.md     # Includes Docker/CI/K8s
├── verification_scope.md           # Exploit verification boundaries
├── exploitation_report.md          # Verified exploits
└── SECURITY_REPORT.md              # Final executive report

Language-Specific Coverage

LanguageSQLNoSQLXSSSSTICMDiCryptoFile
JavaScript/TS
Go
PHP
Python
Rust
Java
Ruby
C#

Quick Reference

CommandDescription
/startFull automated assessment with auto-detect (this skill)
/scanPhase 1 only - Reconnaissance
/reportPhase 4 only - Report generation
/specialistRun all specialist skills in parallel

Frequently asked questions

What does the Perseus:Start AI skill do?

Use when you want to run a full, automated penetration test from start to finish (Scan -> Audit -> Exploit -> Report)

Why use Perseus:Start on TypingMind?

Because you install it once and use it with any model. Perseus:Start is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Perseus:Start in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/kaivyy/perseus/tree/main/skills/perseus/start. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Perseus:Start?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Perseus:Start?

As many as you like. As long as a model supports skills, you can use Perseus:Start with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Perseus:Start AI skill free?

Yes. It is published on GitHub by kaivyy under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇