mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 22:08:27 +00:00
* Feat: clustering fact statements * Feat: cluster drift * Feat: add recall count and model to search * Feat: Github integration * Fix: clustering UI * Improve graph * Bump: new version --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
26 lines
800 B
JSON
26 lines
800 B
JSON
{
|
|
"name": "GitHub extension",
|
|
"key": "github",
|
|
"description": "Plan, track, and manage your agile and software development projects in GitHub. Customize your workflow, collaborate, and release great software.",
|
|
"icon": "github",
|
|
"schedule": {
|
|
"frequency": "*/5 * * * *"
|
|
},
|
|
"auth": {
|
|
"OAuth2": {
|
|
"token_url": "https://github.com/login/oauth/access_token",
|
|
"authorization_url": "https://github.com/login/oauth/authorize",
|
|
"scopes": ["user", "public_repo", "repo", "notifications", "gist", "read:org", "repo_hooks"],
|
|
"scope_separator": ","
|
|
}
|
|
},
|
|
"mcp": {
|
|
"type": "http",
|
|
"url": "https://api.githubcopilot.com/mcp/",
|
|
"headers": {
|
|
"Authorization": "Bearer ${config:access_token}",
|
|
"Content-Type": "application/json"
|
|
}
|
|
}
|
|
}
|