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
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
docs/source/conf.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.204821
# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html from __future__ import annotations import os import sys from datetime import datetime ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/_config/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.207026
"""Set the global config and logger.""" from __future__ import annotations import logging from collections.abc import Generator from contextlib import contextmanager from typing import Any from .cli_colors import parse_cli_ctx from .logger_utils import make_logger from .utils import ManimConfig, ManimFrame, make_con...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
example_scenes/basic.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.215582
#!/usr/bin/env python from manim import * # To watch one of these scenes, run the following: # python --quality m manim -p example_scenes.py SquareToCircle # # Use the flag --quality l for a faster rendering at a lower quality. # Use -s to skip to the end and just save the final frame # Use the -p to have preview of...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
.github/scripts/ci_build_cairo.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.220632
# Logic is as follows: # 1. Download cairo source code: https://cairographics.org/releases/cairo-<version>.tar.xz # 2. Verify the downloaded file using the sha256sums file: https://cairographics.org/releases/cairo-<version>.tar.xz.sha256sum # 3. Extract the downloaded file. # 4. Create a virtual environment and install...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
example_scenes/opengl.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.221903
from pathlib import Path import manim.utils.opengl as opengl from manim import * from manim.opengl import * # Copied from https://3b1b.github.io/manim/getting_started/example_scenes.html#surfaceexample. # Lines that do not yet work with the Community Version are commented. def get_plane_mesh(context): shader = ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
example_scenes/customtex.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.230198
from manim import * class TexTemplateFromCLI(Scene): """This scene uses a custom TexTemplate file. The path of the TexTemplate _must_ be passed with the command line argument `--tex_template <path to template>`. For this scene, you can use the custom_template.tex file next to it. This scene will f...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
example_scenes/advanced_tex_fonts.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.231633
from manim import * # French Cursive LaTeX font example from http://jf.burnol.free.fr/showcase.html # Example 1 Manually creating a Template TemplateForFrenchCursive = TexTemplate( preamble=r""" \usepackage[english]{babel} \usepackage{amsmath} \usepackage{amssymb} \usepackage[T1]{fontenc} \usepackage[default]{fr...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/_config/cli_colors.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.244186
"""Parses CLI context settings from the configuration file and returns a Cloup Context settings dictionary. This module reads configuration values for help formatting, theme styles, and alignment options used when rendering command-line interfaces in Manim. """ from __future__ import annotations import configparser ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.245304
#!/usr/bin/env python from __future__ import annotations from importlib.metadata import PackageNotFoundError, version # Use installed distribution version if available; otherwise fall back to a # sensible default so that importing from a source checkout works without an # editable install (pip install -e .). try: ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/__main__.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.275495
from __future__ import annotations import click import cloup from manim import __version__ from manim._config import cli_ctx_settings, console from manim.cli.cfg.group import cfg from manim.cli.checkhealth.commands import checkhealth from manim.cli.default_group import DefaultGroup from manim.cli.init.commands import...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/_config/logger_utils.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.857621
"""Utilities to create and set the logger. Manim's logger can be accessed as ``manim.logger``, or as ``logging.getLogger("manim")``, once the library has been imported. Manim also exports a second object, ``console``, which should be used to print on screen messages that need not be logged. Both ``logger`` and ``con...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/animation.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.862587
"""Animate mobjects.""" from __future__ import annotations from manim.mobject.opengl.opengl_mobject import OpenGLMobject from .. import config, logger from ..constants import RendererType from ..mobject import mobject from ..mobject.mobject import Group, Mobject from ..mobject.opengl import opengl_mobject from ..uti...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/composition.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.893263
"""Tools for displaying multiple animations at once.""" from __future__ import annotations from collections.abc import Callable, Iterable, Sequence from typing import TYPE_CHECKING, Any import numpy as np from manim._config import config from manim.animation.animation import Animation, prepare_animation from manim....
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/fading.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.903837
"""Fading in and out of view. .. manim:: Fading class Fading(Scene): def construct(self): tex_in = Tex("Fade", "In").scale(3) tex_out = Tex("Fade", "Out").scale(3) self.play(FadeIn(tex_in, shift=DOWN, scale=0.66)) self.play(ReplacementTransform(tex_in, tex_o...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/growing.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.905794
"""Animations that introduce mobjects to scene by growing them from points. .. manim:: Growing class Growing(Scene): def construct(self): square = Square() circle = Circle() triangle = Triangle() arrow = Arrow(LEFT, RIGHT) star = Star() ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/creation.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.920251
r"""Animate the display or removal of a mobject from a scene. .. manim:: CreationModule :hide_source: from manim import ManimBanner class CreationModule(Scene): def construct(self): s1 = Square() s2 = Square() s3 = Square() s4 = Square() ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/changing.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.921929
"""Animation of a mobject boundary and tracing of points.""" from __future__ import annotations __all__ = ["AnimatedBoundary", "TracedPath"] from collections.abc import Callable, Sequence from typing import Any, Self from manim.mobject.mobject import Mobject from manim.mobject.opengl.opengl_compatibility import Con...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/_config/utils.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.927239
"""Utilities to create and set the config. The main class exported by this module is :class:`ManimConfig`. This class contains all configuration options, including frame geometry (e.g. frame height/width, frame rate), output (e.g. directories, logging), styling (e.g. background color, transparency), and general behav...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/indication.py
null
null
null
null
null
null
Python
2026-05-04T02:21:46.953223
"""Animations drawing attention to particular mobjects. Examples -------- .. manim:: Indications class Indications(Scene): def construct(self): indications = [ApplyWave,Circumscribe,Flash,FocusOn,Indicate,ShowPassingFlash,Wiggle] names = [Tex(i.__name__).scale(3) for i in indicati...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/movement.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.423399
"""Animations related to movement.""" from __future__ import annotations __all__ = [ "Homotopy", "SmoothedVectorizedHomotopy", "ComplexHomotopy", "PhaseFlow", "MoveAlongPath", ] from collections.abc import Callable from typing import TYPE_CHECKING, Any import numpy as np from ..animation.animat...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/numbers.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.444393
"""Animations for changing numbers.""" from __future__ import annotations __all__ = ["ChangingDecimal", "ChangeDecimalToValue"] from collections.abc import Callable from typing import Any from manim.mobject.text.numbers import DecimalNumber from ..animation.animation import Animation from ..utils.bezier import in...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/rotation.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.497993
"""Animations related to rotation.""" from __future__ import annotations __all__ = ["Rotating", "Rotate"] from collections.abc import Callable from typing import TYPE_CHECKING, Any from ..animation.animation import Animation from ..animation.transform import Transform from ..constants import OUT, PI, TAU from ..uti...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/specialized.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.509608
from __future__ import annotations __all__ = ["Broadcast"] from collections.abc import Sequence from typing import Any from manim.animation.transform import Restore from manim.mobject.mobject import Mobject from ..constants import * from .composition import LaggedStart class Broadcast(LaggedStart): """Broadca...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/transform_matching_parts.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.589745
"""Animations that try to transform Mobjects while keeping track of identical parts.""" from __future__ import annotations __all__ = ["TransformMatchingShapes", "TransformMatchingTex"] from typing import TYPE_CHECKING import numpy as np from manim.mobject.opengl.opengl_mobject import OpenGLGroup, OpenGLMobject fro...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/speedmodifier.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.596007
"""Utilities for modifying the speed at which animations are played.""" from __future__ import annotations import inspect import types from collections.abc import Callable from typing import TYPE_CHECKING from numpy import piecewise from ..animation.animation import Animation, Wait, prepare_animation from ..animati...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/updaters/update.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.603562
"""Animations that update mobjects.""" from __future__ import annotations __all__ = ["UpdateFromFunc", "UpdateFromAlphaFunc", "MaintainPositionRelativeTo"] import operator as op from collections.abc import Callable from typing import TYPE_CHECKING, Any from manim.animation.animation import Animation if TYPE_CHECK...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/updaters/mobject_update_utils.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.605122
"""Utility functions for continuous animation of mobjects.""" from __future__ import annotations __all__ = [ "assert_is_mobject_method", "always", "f_always", "always_redraw", "always_shift", "always_rotate", "turn_animation_into_updater", "cycle_animation", ] import inspect from col...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/updaters/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.610227
"""Animations and utility mobjects related to update functions. Modules ======= .. autosummary:: :toctree: ../reference ~mobject_update_utils ~update """
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/animation/transform.py
null
null
null
null
null
null
Python
2026-05-04T02:21:47.622019
"""Animations transforming one mobject into another.""" from __future__ import annotations __all__ = [ "Transform", "ReplacementTransform", "TransformFromCopy", "ClockwiseTransform", "CounterclockwiseTransform", "MoveToTarget", "ApplyMethod", "ApplyPointwiseFunction", "ApplyPointwi...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/camera/mapping_camera.py
null
null
null
null
null
null
Python
2026-05-04T02:21:48.566445
"""A camera module that supports spatial mapping between objects for distortion effects.""" from __future__ import annotations __all__ = ["MappingCamera", "OldMultiCamera", "SplitScreenCamera"] import math import numpy as np from ..camera.camera import Camera from ..mobject.types.vectorized_mobject import VMobject...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/camera/moving_camera.py
null
null
null
null
null
null
Python
2026-05-04T02:21:48.659113
"""Defines the MovingCamera class, a camera that can pan and zoom through a scene. .. SEEALSO:: :mod:`.moving_camera_scene` """ from __future__ import annotations __all__ = ["MovingCamera"] from collections.abc import Iterable from typing import Any, Literal, overload from cairo import Context from manim.typ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/camera/camera.py
null
null
null
null
null
null
Python
2026-05-04T02:21:48.788793
"""A camera converts the mobjects contained in a Scene into an array of pixels.""" from __future__ import annotations __all__ = ["Camera", "BackgroundColoredVMobjectDisplayer"] import copy import itertools as it import operator as op import pathlib from collections.abc import Callable, Iterable from functools import...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/camera/three_d_camera.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.525081
"""A camera that can be positioned and oriented in three-dimensional space.""" from __future__ import annotations __all__ = ["ThreeDCamera"] from collections.abc import Callable, Iterable from typing import Any import numpy as np from manim.mobject.mobject import Mobject from manim.mobject.three_d.three_d_utils i...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/cfg/group.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.526264
"""Manim's cfg subcommand. Manim's cfg subcommand is accessed in the command-line interface via ``manim cfg``. Here you can specify options, subcommands, and subgroups for the cfg group. """ from __future__ import annotations import contextlib from ast import literal_eval from pathlib import Path from typing import...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.637809
"""The Manim CLI, and the available commands for ``manim``. This page is a work in progress. Please run ``manim`` or ``manim --help`` in your terminal to find more information on the following commands. Available commands ------------------ .. autosummary:: :toctree: ../reference cfg checkhealth init ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/init/commands.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.657580
"""Manim's init subcommand. Manim's init subcommand is accessed in the command-line interface via ``manim init``. Here you can specify options, subcommands, and subgroups for the init group. """ from __future__ import annotations import configparser from pathlib import Path from typing import Any import click impo...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/camera/multi_camera.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.680052
"""A camera supporting multiple perspectives.""" from __future__ import annotations __all__ = ["MultiCamera"] from collections.abc import Iterable from typing import Any, Self from manim.mobject.mobject import Mobject from manim.mobject.types.image_mobject import ImageMobjectFromCamera from ..camera.moving_camera...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/checkhealth/commands.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.744934
"""A CLI utility helping to diagnose problems with your Manim installation. """ from __future__ import annotations import sys import timeit import click import cloup from manim.cli.checkhealth.checks import HEALTH_CHECKS, HealthCheckFunction __all__ = ["checkhealth"] @cloup.command( context_settings=None, )...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/checkhealth/checks.py
null
null
null
null
null
null
Python
2026-05-04T02:21:49.792627
"""Auxiliary module for the checkhealth subcommand, contains the actual check implementations. """ from __future__ import annotations import os import shutil from collections.abc import Callable from typing import Protocol, cast __all__ = ["HEALTH_CHECKS"] class HealthCheckFunction(Protocol): description: str ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/plugins/commands.py
null
null
null
null
null
null
Python
2026-05-04T02:21:50.605055
"""Manim's plugin subcommand. Manim's plugin subcommand is accessed in the command-line interface via ``manim plugin``. Here you can specify options, subcommands, and subgroups for the plugin group. """ from __future__ import annotations import cloup from manim.constants import CONTEXT_SETTINGS, EPILOG from manim....
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/render/ease_of_access_options.py
null
null
null
null
null
null
Python
2026-05-04T02:21:50.605511
from __future__ import annotations from cloup import Choice, option, option_group __all__ = ["ease_of_access_options"] ease_of_access_options = option_group( "Ease of access options", option( "--progress_bar", default=None, show_default=False, type=Choice( ["displa...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/default_group.py
null
null
null
null
null
null
Python
2026-05-04T02:21:50.606247
"""``DefaultGroup`` allows a subcommand to act as the main command. In particular, this class is what allows ``manim`` to act as ``manim render``. .. note:: This is a vendored version of https://github.com/click-contrib/click-default-group/ under the BSD 3-Clause "New" or "Revised" License. This library ...
ManimCommunity/manim
https://github.com/ManimCommunity/manim
null
null
null
null
38,085
null
null
mit
null
null
null
null
null
null
null
manim/cli/render/commands.py
null
null
null
null
null
null
Python
2026-05-04T02:21:51.300525
"""Manim's default subcommand, render. Manim's render subcommand is accessed in the command-line interface via ``manim``, but can be more explicitly accessed with ``manim render``. Here you can specify options, and arguments for the render command. """ from __future__ import annotations import http.client import js...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/se_extractor.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.846300
import os import glob import torch import hashlib import librosa import base64 from glob import glob import numpy as np from pydub import AudioSegment from faster_whisper import WhisperModel import hashlib import base64 import librosa from whisper_timestamped.transcribe import get_audio_tensor, get_vad_segments model_...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/text/__init__.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.887917
""" from https://github.com/keithito/tacotron """ from openvoice.text import cleaners from openvoice.text.symbols import symbols # Mappings from symbol to numeric ID and vice versa: _symbol_to_id = {s: i for i, s in enumerate(symbols)} _id_to_symbol = {i: s for i, s in enumerate(symbols)} def text_to_sequ...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/api.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.888458
import torch import numpy as np import re import soundfile from openvoice import utils from openvoice import commons import os import librosa from openvoice.text import text_to_sequence from openvoice.mel_processing import spectrogram_torch from openvoice.models import SynthesizerTrn class OpenVoiceBaseClass(object):...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/openvoice_app.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.890438
import os import torch import argparse import gradio as gr from zipfile import ZipFile import langid from openvoice import se_extractor from openvoice.api import BaseSpeakerTTS, ToneColorConverter parser = argparse.ArgumentParser() parser.add_argument("--share", action='store_true', default=False, help="make link publ...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/commons.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.905494
import math import torch from torch.nn import functional as F def init_weights(m, mean=0.0, std=0.01): classname = m.__class__.__name__ if classname.find("Conv") != -1: m.weight.data.normal_(mean, std) def get_padding(kernel_size, dilation=1): return int((kernel_size * dilation - dilation) / 2) ...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/mel_processing.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.907663
import torch import torch.utils.data from librosa.filters import mel as librosa_mel_fn MAX_WAV_VALUE = 32768.0 def dynamic_range_compression_torch(x, C=1, clip_val=1e-5): """ PARAMS ------ C: compression factor """ return torch.log(torch.clamp(x, min=clip_val) * C) def dynamic_range_decompr...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/attentions.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.909021
import math import torch from torch import nn from torch.nn import functional as F from openvoice import commons import logging logger = logging.getLogger(__name__) class LayerNorm(nn.Module): def __init__(self, channels, eps=1e-5): super().__init__() self.channels = channels self.eps = ...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/models.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.909515
import math import torch from torch import nn from torch.nn import functional as F from openvoice import commons from openvoice import modules from openvoice import attentions from torch.nn import Conv1d, ConvTranspose1d, Conv2d from torch.nn.utils import weight_norm, remove_weight_norm, spectral_norm from openvoice...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/modules.py
null
null
null
null
null
null
Python
2026-05-04T02:21:53.957545
import math import torch from torch import nn from torch.nn import functional as F from torch.nn import Conv1d from torch.nn.utils import weight_norm, remove_weight_norm from openvoice import commons from openvoice.commons import init_weights, get_padding from openvoice.transforms import piecewise_rational_quadratic_...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/text/cleaners.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.403055
import re from openvoice.text.english import english_to_lazy_ipa, english_to_ipa2, english_to_lazy_ipa2 from openvoice.text.mandarin import number_to_chinese, chinese_to_bopomofo, latin_to_bopomofo, chinese_to_romaji, chinese_to_lazy_ipa, chinese_to_ipa, chinese_to_ipa2 def cjke_cleaners2(text): text = re.sub...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/text/mandarin.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.461496
import os import sys import re from pypinyin import lazy_pinyin, BOPOMOFO import jieba import cn2an import logging # List of (Latin alphabet, bopomofo) pairs: _latin_to_bopomofo = [(re.compile('%s' % x[0], re.IGNORECASE), x[1]) for x in [ ('a', 'ㄟˉ'), ('b', 'ㄅㄧˋ'), ('c', 'ㄙㄧˉ'), ('d', 'ㄉㄧˋ'), ('e'...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/text/symbols.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.478288
''' Defines the set of symbols used in text input to the model. ''' # japanese_cleaners # _pad = '_' # _punctuation = ',.!?-' # _letters = 'AEINOQUabdefghijkmnoprstuvwyzʃʧ↓↑ ' '''# japanese_cleaners2 _pad = '_' _punctuation = ',.!?-~…' _letters = 'AEINOQUabdefghijkmnoprstuvwyzʃʧʦ↓↑ ' ''' ...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
setup.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.493431
from setuptools import setup, find_packages setup(name='MyShell-OpenVoice', version='0.0.0', description='Instant voice cloning by MyShell.', long_description=open('README.md').read().strip(), long_description_content_type='text/markdown', keywords=[ 'text-to-speech'...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/text/english.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.519244
""" from https://github.com/keithito/tacotron """ ''' Cleaners are transformations that run over the input text at both training and eval time. Cleaners can be selected by passing a comma-delimited list of cleaner names as the "cleaners" hyperparameter. Some cleaners are English-specific. You'll typically want ...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/utils.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.572798
import re import json import numpy as np def get_hparams_from_file(config_path): with open(config_path, "r", encoding="utf-8") as f: data = f.read() config = json.loads(data) hparams = HParams(**config) return hparams class HParams: def __init__(self, **kwargs): for k, v in kwarg...
myshell-ai/OpenVoice
https://github.com/myshell-ai/OpenVoice
null
null
null
null
36,440
null
null
mit
null
null
null
null
null
null
null
openvoice/transforms.py
null
null
null
null
null
null
Python
2026-05-04T02:21:54.573696
import torch from torch.nn import functional as F import numpy as np DEFAULT_MIN_BIN_WIDTH = 1e-3 DEFAULT_MIN_BIN_HEIGHT = 1e-3 DEFAULT_MIN_DERIVATIVE = 1e-3 def piecewise_rational_quadratic_transform( inputs, unnormalized_widths, unnormalized_heights, unnormalized_derivatives, inverse=False, ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/scanners/injection_scanner.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.846180
"""007 Injection Scanner -- Specialized scanner for injection vulnerabilities. Detects code injection, SQL injection, command injection, prompt injection, XSS, SSRF, and path traversal patterns across Python, JavaScript/Node.js, and shell codebases. Performs context-aware analysis to reduce false positives by trackin...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/agent-orchestrator/scripts/match_skills.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.850767
#!/usr/bin/env python3 """ Skill Matching Algorithm for Agent Orchestrator. Scores and ranks skills against a user query to determine which agents are relevant for the current request. Scoring: - Skill name appears in query: +15 - Exact trigger keyword match: +10 per keyword - Capability category match: +5 per cate...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/score_calculator.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.865330
"""007 Score Calculator -- Unified security scoring engine. Aggregates results from all scanners (secrets, dependency, injection, quick_scan) into a unified, per-domain security score with a weighted final verdict. The score covers 8 security domains as defined in config.SCORING_WEIGHTS: - secrets, input_validation...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/config.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.879121
""" 007 Security Skill - Central Configuration Hub ================================================ Central configuration for all 007 security scanners, analyzers, and reporting tools. Every script in the 007 ecosystem imports from here to ensure consistent behavior, scoring, severity levels, detection patterns, and o...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/agent-orchestrator/scripts/orchestrate.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.880577
#!/usr/bin/env python3 """ Multi-Skill Orchestration Engine for Agent Orchestrator. Given matched skills and a query, determines the orchestration pattern and generates an execution plan for Claude to follow. Patterns: - single: One skill handles the entire request - sequential: Skills form a pipeline (...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/full_audit.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.881137
"""007 Full Audit -- Comprehensive 6-phase security audit orchestrator. Executes the complete 007 security audit pipeline: Phase 1: Surface Mapping -- file inventory, entry points, dependencies Phase 2: Threat Modeling Hints -- identify components for STRIDE analysis Phase 3: Security Checklist -- run al...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/scanners/secrets_scanner.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.928158
"""007 Secrets Scanner -- Deep scanner for secrets and credentials. Goes deeper than quick_scan by performing entropy analysis, base64 detection, context-aware false positive reduction, and targeted scanning of sensitive file types (.env, config files, shell scripts, Docker, CI/CD). Usage: python secrets_scanner....
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/scanners/dependency_scanner.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.936413
"""007 Dependency Scanner -- Supply chain and dependency security analyzer. Analyzes dependency security across Python and Node.js projects by inspecting dependency files (requirements.txt, package.json, Dockerfiles, etc.) for version pinning, known risky patterns, and supply chain best practices. Usage: python d...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/007/scripts/quick_scan.py
null
null
null
null
null
null
Python
2026-05-04T02:22:03.977463
"""007 Quick Scan -- Fast automated security scan of a target directory. Recursively scans files in a target directory for secret patterns, dangerous code constructs, permission issues, and oversized files. Produces a scored summary report in text or JSON format. Usage: python quick_scan.py --target /path/to/pro...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/agent-orchestrator/scripts/scan_registry.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.468794
#!/usr/bin/env python3 """ Auto-Discovery Engine for Agent Orchestrator. Scans the skills ecosystem for SKILL.md files, parses metadata, and maintains a centralized registry (registry.json). Features: - Runs automatically on every request (called by CLAUDE.md) - Ultra-fast via MD5 hash caching (~<100ms when nothing c...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/ai-studio-image/scripts/generate.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.513164
""" AI Studio Image — Gerador de Imagens (v2 — Enhanced) Script principal que conecta com Google AI Studio (Gemini/Imagen) para gerar imagens humanizadas. Suporta todos os modelos oficiais, fallback automatico de API keys, e metadados completos. """ import argparse import base64 import json import re import sys impor...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/ai-studio-image/scripts/templates.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.515915
""" AI Studio Image — Templates Pre-configurados Biblioteca de templates prontos para cenarios comuns de geracao de imagens. Cada template inclui um prompt base, configuracoes ideais e contexto adicional para o motor de humanizacao. Uso: python templates.py --list # Listar todos python tem...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/ai-studio-image/scripts/config.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.526282
""" AI Studio Image — Configuracao Central (v2 — Enhanced with Official Docs) Todas as constantes, paths, modelos, formatos, tecnicas e configuracoes baseadas na documentacao oficial do Google AI Studio (Fev 2026). """ from pathlib import Path import os # =============================================================...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/api-design-principles/assets/rest-api-template.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.532876
""" Production-ready REST API template using FastAPI. Includes pagination, filtering, error handling, and best practices. """ from fastapi import FastAPI, HTTPException, Query, Path, Depends, status from fastapi.middleware.cors import CORSMiddleware from fastapi.middleware.trustedhost import TrustedHostMiddleware from...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/ai-studio-image/scripts/prompt_engine.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.534415
""" AI Studio Image — Motor de Humanizacao de Prompts (v2 — Enhanced) Transforma qualquer prompt em uma foto genuinamente humana usando 5 camadas de realismo + tecnicas avancadas da documentacao oficial do Google AI Studio. Principio-chave da Google: "Describe the scene, don't just list keywords." Paragrafos narrativ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/aso_scorer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.598064
""" ASO scoring module for App Store Optimization. Calculates comprehensive ASO health score across multiple dimensions. """ from typing import Dict, List, Any, Optional class ASOScorer: """Calculates overall ASO health score and provides recommendations.""" # Score weights for different components (total =...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/ab_test_planner.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.599552
""" A/B testing module for App Store Optimization. Plans and tracks A/B tests for metadata and visual assets. """ from typing import Dict, List, Any, Optional import math class ABTestPlanner: """Plans and tracks A/B tests for ASO elements.""" # Minimum detectable effect sizes (conservative estimates) MI...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/competitor_analyzer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.645150
""" Competitor analysis module for App Store Optimization. Analyzes top competitors' ASO strategies and identifies opportunities. """ from typing import Dict, List, Any, Optional from collections import Counter import re class CompetitorAnalyzer: """Analyzes competitor apps to identify ASO opportunities.""" ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/api-patterns/scripts/api_validator.py
null
null
null
null
null
null
Python
2026-05-04T02:22:04.664889
#!/usr/bin/env python3 """ API Validator - Checks API endpoints for best practices. Validates OpenAPI specs, response formats, and common issues. """ import sys import json import re from pathlib import Path # Fix Windows console encoding for Unicode output try: sys.stdout.reconfigure(encoding='utf-8', errors='rep...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/keyword_analyzer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.118717
""" Keyword analysis module for App Store Optimization. Analyzes keyword search volume, competition, and relevance for app discovery. """ from typing import Dict, List, Any, Optional, Tuple import re from collections import Counter class KeywordAnalyzer: """Analyzes keywords for ASO effectiveness.""" # Comp...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/launch_checklist.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.129034
""" Launch checklist module for App Store Optimization. Generates comprehensive pre-launch and update checklists. """ from typing import Dict, List, Any, Optional from datetime import datetime, timedelta class LaunchChecklistGenerator: """Generates comprehensive checklists for app launches and updates.""" d...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/review_analyzer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.130417
""" Review analysis module for App Store Optimization. Analyzes user reviews for sentiment, issues, and feature requests. """ from typing import Dict, List, Any, Optional, Tuple from collections import Counter import re class ReviewAnalyzer: """Analyzes user reviews for actionable insights.""" # Sentiment k...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/metadata_optimizer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.147290
""" Metadata optimization module for App Store Optimization. Optimizes titles, descriptions, and keyword fields with platform-specific character limit validation. """ from typing import Dict, List, Any, Optional, Tuple import re class MetadataOptimizer: """Optimizes app store metadata for maximum discoverability...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/audio-transcriber/scripts/transcribe.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.193319
#!/usr/bin/env python3 """ Audio Transcriber v1.1.0 Transcreve áudio para texto e gera atas/resumos usando LLM. """ import os import sys import json import subprocess import shutil from datetime import datetime from pathlib import Path # Rich for beautiful terminal output try: from rich.console import Console ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/app-store-optimization/localization_helper.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.198471
""" Localization helper module for App Store Optimization. Manages multi-language ASO optimization strategies. """ from typing import Dict, List, Any, Optional, Tuple class LocalizationHelper: """Helps manage multi-language ASO optimization.""" # Priority markets by language (based on app store revenue and ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/claude-monitor/scripts/config.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.200581
""" Configurações e thresholds para o Claude Monitor. """ # Thresholds de alerta THRESHOLDS = { "cpu": { "ok": 60, "warning": 85, # acima de warning = critical }, "ram_percent": { "ok": 70, "warning": 85, }, "browsers_ram_gb": { "ok": 3.0, "wa...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/claude-monitor/scripts/api_bench.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.201466
#!/usr/bin/env python3 """ Claude Monitor — Benchmark de Conectividade API Testa latência e conectividade com a API do Claude. Não faz chamadas à API (não precisa de API key). Apenas verifica se a rede está funcionando e se o endpoint responde. Uso: python api_bench.py # 5 testes de latência pyth...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/claude-monitor/scripts/health_check.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.238344
#!/usr/bin/env python3 """ Claude Monitor — Diagnóstico Rápido de Performance Analisa CPU, RAM, browsers, disco e rede em ~3 segundos. Identifica o gargalo principal e sugere ações corretivas. Uso: python health_check.py # Diagnóstico completo python health_check.py --browsers-detail # Detal...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/claude-monitor/scripts/monitor.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.374964
#!/usr/bin/env python3 """ Claude Monitor — Monitor Contínuo de Performance Coleta snapshots periódicos de CPU, RAM e browsers. Gera relatório com tendências e alertas ao final. Uso: python monitor.py # 5 min, amostras a cada 30s python monitor.py --interval 10 --duration 120 # 2 min...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/content-creator/scripts/brand_voice_analyzer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.759433
#!/usr/bin/env python3 """ Brand Voice Analyzer - Analyzes content to establish and maintain brand voice consistency """ import re from typing import Dict, List, Tuple import json class BrandVoiceAnalyzer: def __init__(self): self.voice_dimensions = { 'formality': { 'formal': [...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/content-creator/scripts/seo_optimizer.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.760836
#!/usr/bin/env python3 """ SEO Content Optimizer - Analyzes and optimizes content for SEO """ import re from typing import Dict, List, Set import json class SEOOptimizer: def __init__(self): # Common stop words to filter self.stop_words = { 'the', 'a', 'an', 'and', 'or', 'but', 'in', '...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/active_context.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.830785
""" Gerencia o ACTIVE_CONTEXT.md — arquivo que é sincronizado com MEMORY.md. Limite rígido de ~150 linhas para caber no system prompt. """ import shutil from datetime import datetime from pathlib import Path from config import ( ACTIVE_CONTEXT_PATH, MEMORY_DIR, MEMORY_MD_PATH, MAX_ACTIVE_CONTEXT_LINES...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/models.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.832684
""" Modelos de dados do Context Agent. Dataclasses puras sem dependências externas. """ from dataclasses import dataclass, field from datetime import datetime from typing import Optional @dataclass class SessionEntry: """Uma entrada individual do log JSONL do Claude Code.""" type: str ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/compressor.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.833690
""" Compressão inteligente e arquivamento de sessões antigas. Mantém o histórico enxuto sem perder informação crítica. """ import shutil from datetime import datetime from pathlib import Path from config import SESSIONS_DIR, ARCHIVE_DIR, ARCHIVE_AFTER_SESSIONS def should_archive(session_number: int, current_session...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/context_manager.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.859832
#!/usr/bin/env python3 """ Context Manager — Entry point CLI do Context Agent. Orquestra save, load, status, search, archive e maintain. Uso: python context_manager.py init # Bootstrap do sistema python context_manager.py save [--session PATH] # Salvar contexto da sessão python context_manager.py l...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/config.py
null
null
null
null
null
null
Python
2026-05-04T02:22:05.860645
""" Configuração centralizada do Context Agent. Todos os paths, constantes e limites usados pelos demais módulos. """ from pathlib import Path # ── Raízes ────────────────────────────────────────────────────────── SKILLS_ROOT = Path(r"C:\Users\renat\skills") CONTEXT_AGENT_ROOT = SKILLS_ROOT / "context-agent" # ── Da...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/project_registry.py
null
null
null
null
null
null
Python
2026-05-04T02:22:06.162060
""" Registro e tracking de projetos/skills. Mantém PROJECT_REGISTRY.md atualizado. """ import re from datetime import datetime from pathlib import Path from config import ( PROJECT_REGISTRY_PATH, SKILLS_ROOT, KNOWN_PROJECTS, ) from models import ProjectInfo def load_registry() -> list[ProjectInfo]: ...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/search.py
null
null
null
null
null
null
Python
2026-05-04T02:22:06.338206
""" Busca full-text via SQLite FTS5 no histórico de sessões. """ import sqlite3 from pathlib import Path from config import DB_PATH, MAX_SEARCH_RESULTS from models import SearchResult def _get_connection() -> sqlite3.Connection: """Retorna conexão SQLite com FTS5.""" DB_PATH.parent.mkdir(parents=True, exist...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/context_loader.py
null
null
null
null
null
null
Python
2026-05-04T02:22:06.338900
""" Carrega contexto no início de uma nova sessão. Gera briefings de diferentes níveis de detalhe. """ from pathlib import Path from config import SESSIONS_DIR, MAX_RECENT_SESSIONS from models import SessionSummary from active_context import load_active_context, ACTIVE_CONTEXT_PATH from project_registry import load_r...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/docx-official/ooxml/scripts/unpack.py
null
null
null
null
null
null
Python
2026-05-04T02:22:06.651625
#!/usr/bin/env python3 """Unpack and format XML contents of Office files (.docx, .pptx, .xlsx)""" import random import shutil import stat import sys import zipfile from pathlib import Path def _is_zip_symlink(member: zipfile.ZipInfo) -> bool: return stat.S_ISLNK(member.external_attr >> 16) def _is_safe_destina...
sickn33/antigravity-awesome-skills
https://github.com/sickn33/antigravity-awesome-skills
null
null
null
null
36,211
null
null
mit
null
null
null
null
null
null
null
plugins/antigravity-awesome-skills-claude/skills/context-agent/scripts/session_parser.py
null
null
null
null
null
null
Python
2026-05-04T02:22:06.652609
""" Parser dos logs JSONL do Claude Code. Lê arquivos de sessão e extrai informações estruturadas. """ import json from pathlib import Path from datetime import datetime from typing import Optional from config import CLAUDE_SESSION_DIR, FILE_MODIFYING_TOOLS from models import SessionEntry def parse_session_file(pat...