
Git OSS Stats
Description
Dynamically generate and analyze stats and history for OSS repos and developers.
Details
https://chat-gpt-github-stat-plugin.vercel.app/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Git OSS Stats",
"name_for_model": "gitUserRepoStats",
"description_for_human": "Dynamically generate and analyze stats and history for OSS repos and developers.",
"description_for_model": "Manages the retrieval of comprehensive statistics and information about OSS repositories or developers. It provides capabilities such as generating and fetching detailed repository data, user data, community data, star history, and other relevant statistics.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://chat-gpt-github-stat-plugin.vercel.app/openapi.yaml"
},
"logo_url": "https://chat-gpt-github-stat-plugin.vercel.app/logo.png",
"contact_email": "yunwei356@gmail.com",
"legal_info_url": "https://github.com/yunwei37/ChatGPT-github-stat-plugin"
}
https://chat-gpt-github-stat-plugin.vercel.app/openapi.yaml
openapi: 3.0.1
info:
version: "v1"
title: "Github OSS Stat Plugin API"
description: "This is the API specification for the ChatGPT Github Stat Plugin. It provides endpoints to retrieve statistics and information for a GitHub user or a specific GitHub repository."
servers:
- url: "https://chat-gpt-github-stat-plugin.vercel.app"
paths:
/api/github/{owner}:
get:
operationId: getGithubUser
summary: "Get GitHub user information"
description: "Retrieve statistics and information for a GitHub user."
parameters:
- in: path
name: owner
required: true
description: GitHub username.
schema:
type: string
responses:
"200":
description: "Successfully retrieved user information."
content:
application/json:
schema:
$ref: "#/components/schemas/User"
/api/github/{owner}/{repo}:
get:
operationId: getGithubRepo
summary: "Get GitHub repository information"
description: "Retrieve statistics, history and information for a specific GitHub repository."
parameters:
- in: path
name: owner
required: true
description: GitHub username.
schema:
type: string
- in: path
name: repo
required: true
description: GitHub repository name.
schema:
type: string
responses:
"200":
description: "Successfully retrieved repository information."
content:
application/json:
schema:
$ref: "#/components/schemas/Repo"
components:
schemas:
User:
type: object
properties:
html_url:
type: string
description: The HTML URL of the user's GitHub profile.
type:
type: string
description: The type of GitHub account.
name:
type: string
description: The name of the GitHub user.
company:
type: string
description: The company that the GitHub user is associated with.
blog:
type: string
description: The URL of the user's blog.
location:
type: string
description: The location of the GitHub user.
email:
type: string
nullable: true
description: The email of the GitHub user.
hireable:
type: boolean
description: Whether the user is hireable or not.
bio:
type: string
description: The biography of the GitHub user.
twitter_username:
type: string
description: The Twitter username of the GitHub user.
public_repos:
type: integer
description: The number of public repositories of the GitHub user.
public_gists:
type: integer
description: The number of public gists of the GitHub user.
followers:
type: integer
description: The number of followers of the GitHub user.
following:
type: integer
description: The number of people the GitHub user is following.
created_at:
type: string
format: date-time
description: The creation date and time of the GitHub user's account.
updated_at:
type: string
format: date-time
description: The update date and time of the GitHub user's account.
totalPRs:
type: integer
description: The total number of pull requests by the GitHub user.
totalCommits:
type: integer
description: The total number of commits by the GitHub user.
totalIssues:
type: integer
description: The total number of issues opened by the GitHub user.
totalStars:
type: integer
description: The total number of stars received by the GitHub user's repositories.
contributedTo:
type: integer
description: The number of repositories the GitHub user has contributed to.
rank:
$ref: '#/components/schemas/Rank'
mostStarredRepos:
type: array
items:
type: string
description: List of the user's most starred repositories.
Rank:
type: object
properties:
level:
type: string
description: The level of the GitHub user's rank.
percentile:
type: number
format: double
description: The percentile of the GitHub user's rank.
Repo:
type: object
properties:
name:
type: string
description: The name of the repository.
full_name:
type: string
description: The full name of the repository.
private:
type: boolean
description: Indicates if the repository is private.
owner:
type: object
description: The owner of the repository.
properties:
login:
type: string
type:
type: string
site_admin:
type: boolean
html_url:
type: string
description: The HTML URL of the repository.
description:
type: string
description: The description of the repository.
fork:
type: boolean
description: Indicates if the repository is a fork.
created_at:
type: string
format: date-time
description: The creation time of the repository.
updated_at:
type: string
format: date-time
description: The last update time of the repository.
pushed_at:
type: string
format: date-time
description: The last push time of the repository.
homepage:
type: string
description: The homepage of the repository.
size:
type: integer
description: The size of the repository.
stargazers_count:
type: integer
description: The count of stargazers of the repository.
watchers_count:
type: integer
description: The count of watchers of the repository.
language:
type: string
description: The primary language of the repository.
has_issues:
type: boolean
description: Indicates if the repository has issues enabled.
has_projects:
type: boolean
description: Indicates if the repository has projects enabled.
has_downloads:
type: boolean
description: Indicates if the repository has downloads enabled.
has_wiki:
type: boolean
description: Indicates if the repository has wiki enabled.
has_pages:
type: boolean
description: Indicates if the repository has GitHub pages enabled.
has_discussions:
type: boolean
description: Indicates if the repository has discussions enabled.
forks_count:
type: integer
description: The count of forks of the repository.
mirror_url:
type: string
description: The mirror URL of the repository.
archived:
type: boolean
description: Indicates if the repository is archived.
disabled:
type: boolean
description: Indicates if the repository is disabled.
open_issues_count:
type: integer
description: The count of open issues in the repository.
license:
type: object
description: The license of the repository.
properties:
key:
type: string
name:
type: string
spdx_id:
type: string
url:
type: string
node_id:
type: string
allow_forking:
type: boolean
description: Indicates if forking is allowed for the repository.
is_template:
type: boolean
description: Indicates if the repository is a template.
topics:
type: array
items:
type: string
description: The topics of the repository.
visibility:
type: string
description: The visibility of the repository.
forks:
type: integer
description: The number of forks of the repository.
open_issues:
type: integer
description: The number of open issues in the repository.
watchers:
type: integer
description: The number of watchers of the repository.
default_branch:
type: string
description: The default branch of the repository.
network_count:
type: integer
description: The network count of the repository.
subscribers_count:
type: integer
description: The subscribers count of the repository.
stargazerData:
type: array
items:
type: object
properties:
date:
type: string
format: date-time
count:
type: integer
tag:
type: string
readme:
type: string
description: The README of the repository.
Discover other plugins from the programming category

Semgrep
Plugin for Semgrep. A plugin for scanning your code with Semgrep for security, correctness, and performance issues.
0 Comments

Appy Pie Text to App Generator
AI-powered Text-to-App Generator turns your app idea into Android and iOS apps- just provide text input.
0 Comments
![GitHub [UNOFFICIAL]](/_next/image?w=96&q=75&url=https%3A%2F%2Fapi.getit.ai%2Fimage%2F%3Furl%3Dhttps%3A%2F%2Fgh-plugin.teammait.com%2Flogo.png)
GitHub [UNOFFICIAL]
Plugin for interacting with GitHub repositories, accessing file structures, and modifying code. @albfresco for support.
0 Comments
Telnyx Storage
Manage your buckets and objects through simple, intuitive textual commands.
0 Comments

CreatiCode Scratch
Display Scratch programs as images and write 2D/3D programs using CreatiCode Scratch extensions.
0 Comments

DEV Community
Plugin for recommending articles or users from DEV Community.
0 Comments
Progressier
Create powerful PWAs, design screenshots, send push notifications
0 Comments

Databricks
A plugin that allows the user to interact with Databricks.
0 Comments

Bundlejs API
Plugin for bundling, treeshaking, transpiling, compressing and minification of JavaScript and TypeScript code
0 Comments

WordPress.com
Plugin for managing WordPress.com websites, blogging, and ecommerce
0 Comments

GitSearch
Search code on GitHub repositories based on a query.
0 Comments

Page whisperer plugin
Plugin for creating and publishing a web page.
0 Comments

AI2sql
Converts a natural language text into an SQL query.
0 Comments

HTTP Webhooks
Allows you to write, deploy, and manage HTTP Webhooks in JavaScript, right from the chat.
0 Comments

DeployScript
DeployScript effortlessly launches web apps, handling the tech for you. Watch your ideas come to life!
0 Comments
Website Performance
Measure key metrics about your website - performance, accessibility, best practices, SEO, PWA.
0 Comments

Netlify Drop
Describe a simple website you want to make, and deploy it to Netlify to share it with others and claim it as your own.
0 Comments

60sec site
Generate a beautiful website in 60 seconds using AI.
0 Comments

Wordpress Publisher
Publish content directly to a Wordpress blog.
0 Comments

Repo Inspector
Inspect Git Repositories. Submit a GitHub, Gitlab, etc., HTTPS link. The repo will be reviewed by Repo Inspector.
0 Comments

Repo Radar
Your one-stop shop for up to date Github repo information. Find repos by topic, language, or name.
0 Comments

Shuto.IO
Shuto.IO is a multi-tool for creators and developers with SMS, Email, Wordpress and SSH Command Execution capabilities.
0 Comments
CoderPad
Run code in more than 30 different programming languages, and let us worry about setting up the environment!
1 Comments

Code Runner
Run and Save your code while creating visualizations (charts and graphs) supports upto 70 programming languages.
2 Comments

AskTheCode
Provide a GitHub repository URL with the C# project and ask about any aspect of the code.
0 Comments

Scraper
Scrape content from webpages by providing a URL.
0 Comments

Appy Pie App Builder
AI-powered Text-to-App Generator turns your app idea into Android and iOS apps- just provide text input.
0 Comments

Databricks (dev-azure-westus)
A plugin that allows the user to interact with Databricks.
0 Comments

WP Interact
Fetch or search posts from self-hosted WordPress websites, opening new possibilities for smart interaction with content.
0 Comments

QyrusTestPilot
You can test your webapp without writing a single line of code by just giving the URL
0 Comments

LGTM
Search for LGTM Markdown.
0 Comments
Chat Stack Search
Use the Stack Exchange API to search sites such as Stack Overflow and return questions, answers, and other information.
0 Comments
Shor in QASM
Generate quantum circuits for Shor's algorithm in QASM format.
0 Comments

WebDev
Build a live website within seconds directly from the chat and preview and test HTML code with JavaScript and CSS.
0 Comments

Cloud Diagram Gen
Generate cloud architecture diagrams. Unofficial AWS plugin.
0 Comments

GitAIOps
Unofficial tool for GitLab CI/CD workflows. Streamlines merge request reviews, pipeline debugging, and more.
0 Comments
ad4mat
API to monetize outgoing traffic via tracking links.
0 Comments

Web5 assistant
Assistant for developers building a web5 application by providing examples, documentation and writing web5 code.
0 Comments
AI with Jira®
Unofficial plugin for Jira®. Create issues such as tasks, user stories and bugs directly on your Jira® project.
0 Comments

Text to SQL Plugin
Plugin that converts a natural language text into an SQL query.
0 Comments
Devhunt
Find your next favorite tool.
0 Comments

Talk With Docs
Ask any questions to your docs.
0 Comments

Recombinant AI™
Input a Github repo URL. Get a holistic,deep, relational understanding of the codebase.
0 Comments
CodeCast Wandbox
Instantly compile your code online with Wandbox. Improve your coding learning experience.
1 Comments
StackOverflow Plus
Expand your knowledge beyond 2021/09/01. Get recent questions and answers from Stack Overflow.
0 Comments

A/B JUDGE
Judge whether the A/B test results are superior or not.
0 Comments

ne.tools
Network diagnostic tool for DNS record lookup (A, AA, MX, NS and more) and WHOIS queries for domains and IP addresses.
0 Comments

Code Library Search
Answer any questions about Python libraries (Currently Langchain and Openai). Can answer version specific questions.
0 Comments

Service Check
Check if services are running and how fast they are responding. You can check Website, Email, Domain Lookup and Ping.
0 Comments

AI Extensions
Craft your extensions with ease! Step-by-step guidance at your fingertips.
0 Comments

Passive DNS Pivots
Global pDNS 800 Billion records searchable. Unearth nefarious domains within minutes of creation.
0 Comments

WPressGenie
Manages a WordPress site. You can get, view and analyze details of WordPress posts and content.
0 Comments
API Bot
This is a conversational bot that lets you ask questions about a variety of common APIs.
0 Comments

SPARQL Query
Returns Query Solution Page for Query Text.
0 Comments

Codeulator
Collaborate with AI directly inside your favorite code editor.
0 Comments

Calculator Tools
Create any app, calculator, tool, tracker, or game instantly with AI.
0 Comments

Site Analysis and Moderation
This plugin provides data analysis, content moderation and automatic report generation functionalities for your website.
0 Comments

Check Website Down
Insert your website URL to check the availability. Pulsetic tests the uptime, availability & performance of a website.
0 Comments
Take Code Captures
Capture, beautify, and share your code snippets easily.
0 Comments