-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.json
More file actions
74 lines (74 loc) · 2.23 KB
/
context.json
File metadata and controls
74 lines (74 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"projectName": "Example Project Context",
"description": "This file links related repositories, documentation, and resources for your team or project.",
"repositories": [
{
"name": "main-app",
"localPath": "~/projects/main-app",
"url": "https://github.com/myorg/main-app"
},
{
"name": "infra-scripts",
"localPath": "~/projects/infra-scripts",
"url": "https://github.com/myorg/infra-scripts"
}
],
"docs": ["architecture/README.md", "README.md"],
"automations": ["automations/daily-digest.js"],
"services": [
{
"name": "github",
"type": "api",
"description": "GitHub API integration for repository and user data",
"endpoint": "https://api.github.com/"
},
{
"name": "slack",
"type": "webhook",
"description": "Slack webhook for notifications",
"endpoint": "https://hooks.slack.com/services/EXAMPLE",
"docs": "https://docs.slack.dev/"
},
{
"name": "openai",
"type": "api",
"description": "OpenAI API for language model, embeddings, images, audio, and more. See https://platform.openai.com/docs/api-reference for endpoints.",
"endpoint": "https://api.openai.com/v1/",
"authentication": {
"type": "bearer",
"header": "Authorization",
"env": "OPENAI_API_KEY"
},
"docs": "https://platform.openai.com/docs/api-reference"
}
],
"tools": {
"cli": {
"gh": {
"description": "GitHub CLI for repository operations",
"url": "https://cli.github.com/",
"exec": "gh"
},
"jq": {
"description": "Command-line JSON processor",
"url": "https://stedolan.github.io/jq/",
"exec": "jq"
},
"yq": {
"description": "YAML/XML/TOML processor - jq wrapper for YAML documents",
"url": "https://github.com/mikefarah/yq",
"exec": "yq"
},
"wget": {
"description": "Internet file retrieval utility",
"url": "https://www.gnu.org/software/wget/",
"exec": "wget"
},
"make": {
"description": "Utility for directing compilation and task automation",
"url": "https://www.gnu.org/software/make/",
"exec": "make"
}
}
}
}