🛠️ Update various documentation, scripts, and configuration templates to enhance clarity, functionality, and maintainability across the project

This commit is contained in:
2026-05-04 10:56:41 +00:00
parent 1a2f1510bf
commit 31975e3088
41 changed files with 4184 additions and 133 deletions

View File

@@ -0,0 +1,66 @@
{
// Managed MCP servers for the GitHub Copilot CLI user profile.
"mcpServers": {
"filesystem": {
"type": "stdio",
"command": "node",
"args": [
"{{COPILOT_RESOURCES_HOME}}/install/mcp/copilot-cli-filesystem-wrapper.mjs"
],
"timeout": 30000
},
"gitea": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"FORGEJOMCP_SERVER",
"-e",
"FORGEJOMCP_TOKEN",
"ronmi/forgejo-mcp",
"stdio"
],
"env": {
"FORGEJOMCP_SERVER": "{{GITEA_SERVER_URL}}",
"FORGEJOMCP_TOKEN": "{{GITEA_TOKEN}}"
},
"tools": [
"search_repositories",
"list_my_repositories",
"list_org_repositories",
"get_repository",
"list_repo_issues",
"get_issue",
"create_issue",
"edit_issue",
"list_issue_comments",
"add_issue_labels",
"remove_issue_label",
"replace_issue_labels",
"list_repo_labels",
"create_label",
"edit_label",
"delete_label",
"list_repo_milestones",
"create_milestone",
"edit_milestone",
"delete_milestone",
"list_releases",
"create_release",
"edit_release",
"delete_release",
"list_release_attachments",
"list_pull_requests",
"get_pull_request",
"create_pull_request",
"list_wiki_pages",
"get_wiki_page",
"list_action_tasks"
],
"timeout": 30000
}
}
}