-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathlabels.json
More file actions
167 lines (167 loc) · 4.21 KB
/
Copy pathlabels.json
File metadata and controls
167 lines (167 loc) · 4.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
[
{
"name": "bug",
"color": "e8b4b4",
"description": "Something is not working as intended"
},
{
"name": "documentation",
"color": "f0e8c8",
"description": "Improvements or additions to documentation"
},
{
"name": "duplicate",
"color": "d4d4d4",
"description": "This issue or pull request already exists"
},
{
"name": "enhancement",
"color": "b8d4e8",
"description": "New feature or capability"
},
{
"name": "good first issue",
"color": "c8f030",
"description": "Suitable for newcomers"
},
{
"name": "help wanted",
"color": "f5e020",
"description": "Extra attention or design input is needed"
},
{
"name": "invalid",
"color": "e8e0b8",
"description": "Not actionable or off-scope"
},
{
"name": "question",
"color": "f0d4e8",
"description": "Further information or discussion is needed"
},
{
"name": "wontfix",
"color": "e8e8e8",
"description": "This will not be worked on"
},
{
"name": "security",
"color": "f0c8b8",
"description": "Security-related report; see SECURITY.md for coordinated disclosure"
},
{
"name": "refactor",
"color": "d8d0f0",
"description": "Structural change without changing intended behavior"
},
{
"name": "infrastructure",
"color": "c8d8e8",
"description": "CI/CD, .github, repository layout, or automation"
},
{
"name": "dependencies",
"color": "f0e8c8",
"description": "requirements.txt, Ollama, Chroma, PostgreSQL, or toolchain versions"
},
{
"name": "testing",
"color": "d0f0e0",
"description": "pytest, smoke paths, or test harness work"
},
{
"name": "area:core",
"color": "d0f5f0",
"description": "Main entry, command router, boot orchestration, streaming chat, globals"
},
{
"name": "area:boot-auth",
"color": "d0f5f0",
"description": "Biometric gate, kun.py profiles, arpa_id access tiers, /status reboot"
},
{
"name": "area:memory",
"color": "d0f5f0",
"description": "PostgreSQL, ChromaDB, /recall, /forget, /memorize, mnemonic embeddings"
},
{
"name": "area:terminal",
"color": "d0f5f0",
"description": "terminal_colors.py, help.py, themes, slash command UX"
},
{
"name": "area:persona",
"color": "d0f5f0",
"description": "System prompt, Soul Signature, persona and behavior text in utils.py"
},
{
"name": "area:config",
"color": "d0f5f0",
"description": ".env, kun.example.py, configuration and onboarding docs"
},
{
"name": "area:agentic",
"color": "d0f5f0",
"description": "agentic_network.py, /ask, Nyx, G1, live agent sessions"
},
{
"name": "area:markets",
"color": "d0f5f0",
"description": "markets.py, markets_mappings.py, /markets and Yahoo Finance panels"
},
{
"name": "area:web3",
"color": "d0f5f0",
"description": "web3_handler.py, /0x, receive, swaps, chains, wallets"
},
{
"name": "area:mail",
"color": "d0f5f0",
"description": "mail.py, SMTP send, IMAP inbox, /mail"
},
{
"name": "area:dna",
"color": "d0f5f0",
"description": "dna.py, GDDA workflows, /dna, NCBI tooling"
},
{
"name": "area:genai",
"color": "d0f5f0",
"description": "/imagine, /music, video.py, /video, generative media pipelines"
},
{
"name": "area:rooms",
"color": "d0f5f0",
"description": "room.py, /room, Chroma session logs, outputs/rooms exports"
},
{
"name": "area:voice",
"color": "d0f5f0",
"description": "/voice, /voice1, /voice2, TTS/STT, system sounds, ElevenLabs paths"
},
{
"name": "needs-triage",
"color": "f0f0d8",
"description": "New issue; maintainer has not confirmed area and scope yet"
},
{
"name": "confirmed",
"color": "d8f0d8",
"description": "Reproduction or scope accepted; ready for implementation"
},
{
"name": "blocked",
"color": "f0d8d8",
"description": "Waiting on dependency, decision, or external input"
},
{
"name": "priority:high",
"color": "f0b8b8",
"description": "Urgent for the next patch or release (maintainers only)"
},
{
"name": "priority:low",
"color": "d8e8f0",
"description": "Backlog or nice-to-have (maintainers only)"
}
]