@minhpnq1807/contextos 0.5.52 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.codex/skills/contextos-community/SKILL.md +15 -0
- package/.codex/skills/contextos-community/skill.yaml +20 -0
- package/.codex/skills/contextos-release/SKILL.md +15 -0
- package/.codex/skills/contextos-release/skill.yaml +20 -0
- package/.codex/skills/contextos-routing/SKILL.md +15 -0
- package/.codex/skills/contextos-routing/skill.yaml +20 -0
- package/.codex/workflows/primary.md +13 -0
- package/.codex/workflows/release.md +12 -0
- package/CHANGELOG.md +16 -0
- package/README.md +115 -10
- package/bin/ctx.js +5 -1
- package/community-skills/README.md +42 -0
- package/community-skills/_template/SKILL.md +15 -0
- package/community-skills/_template/skill.yaml +20 -0
- package/community-skills/eas/SKILL.md +15 -0
- package/community-skills/eas/skill.yaml +23 -0
- package/community-skills/jwt-auth/SKILL.md +15 -0
- package/community-skills/jwt-auth/skill.yaml +22 -0
- package/community-skills/oauth-google/SKILL.md +15 -0
- package/community-skills/oauth-google/skill.yaml +22 -0
- package/community-skills/prisma/SKILL.md +15 -0
- package/community-skills/prisma/skill.yaml +22 -0
- package/community-skills/redis/SKILL.md +15 -0
- package/community-skills/redis/skill.yaml +22 -0
- package/community-skills/vercel/SKILL.md +15 -0
- package/community-skills/vercel/skill.yaml +22 -0
- package/docs/launch-demos.md +105 -0
- package/docs/roadmap.md +285 -0
- package/eval/skill-routing/cases.yaml +1 -1
- package/package.json +4 -1
- package/plugins/ctx/.codex-plugin/plugin.json +1 -1
- package/plugins/ctx/lib/certification.js +223 -0
- package/plugins/ctx/lib/skill-discoverer.js +13 -6
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Redis
|
|
3
|
+
description: Add and debug Redis caching, TTLs, sessions, queues, rate limits, and cache invalidation.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Redis
|
|
7
|
+
|
|
8
|
+
Use this skill when the repo has Redis evidence such as `redis`, `ioredis`, BullMQ, session stores, or cache modules.
|
|
9
|
+
|
|
10
|
+
## Workflow
|
|
11
|
+
|
|
12
|
+
1. Inspect Redis client setup, cache keys, TTL policy, and invalidation paths.
|
|
13
|
+
2. Confirm whether Redis is used for cache, queue, session, rate limit, or pub/sub behavior.
|
|
14
|
+
3. Patch the smallest client/service boundary and preserve existing key conventions.
|
|
15
|
+
4. Verify with focused tests or a local command that exercises the Redis path.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
id: redis
|
|
2
|
+
name: Redis
|
|
3
|
+
description: Add and debug Redis cache, TTL, sessions, rate limits, queues, and pub/sub behavior.
|
|
4
|
+
positive_triggers:
|
|
5
|
+
prompts: [redis, cache, caching, ttl, session, rate limit, queue, bullmq, invalidation]
|
|
6
|
+
files: [redis.conf, docker-compose.yml]
|
|
7
|
+
dependencies: [redis, ioredis, bullmq, cache-manager-redis-store]
|
|
8
|
+
evidence:
|
|
9
|
+
files: [redis.conf, docker-compose.yml, docker-compose.yaml]
|
|
10
|
+
dependencies: [redis, ioredis, bullmq, cache-manager, cache-manager-redis-store]
|
|
11
|
+
negative_triggers:
|
|
12
|
+
prompts: [browser cache, next cache, static cache]
|
|
13
|
+
dependencies: [swr]
|
|
14
|
+
workflow:
|
|
15
|
+
- Inspect client setup, cache keys, TTLs, and invalidation paths.
|
|
16
|
+
- Identify whether Redis backs cache, queue, session, rate limit, or pub/sub behavior.
|
|
17
|
+
- Patch the smallest service boundary while preserving key conventions.
|
|
18
|
+
- Verify with focused tests or a command that exercises the Redis path.
|
|
19
|
+
related_skills:
|
|
20
|
+
- performance-optimization
|
|
21
|
+
- backend-development
|
|
22
|
+
- observability
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Vercel Deployment
|
|
3
|
+
description: Fix Next.js and Vercel deployment failures, environment issues, build output problems, and production routing regressions.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Vercel Deployment
|
|
7
|
+
|
|
8
|
+
Use this skill when the repo has Vercel or Next.js evidence such as `vercel.json`, `next`, or `next.config.*`.
|
|
9
|
+
|
|
10
|
+
## Workflow
|
|
11
|
+
|
|
12
|
+
1. Inspect `vercel.json`, Next config, package scripts, and deployment logs.
|
|
13
|
+
2. Check build command, output directory, environment variables, and route/runtime settings.
|
|
14
|
+
3. Patch the minimal config or code path that explains the deployment failure.
|
|
15
|
+
4. Verify with the project build command and any available Vercel validation.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
id: vercel
|
|
2
|
+
name: Vercel Deployment
|
|
3
|
+
description: Fix Vercel and Next.js deployment failures.
|
|
4
|
+
positive_triggers:
|
|
5
|
+
prompts: [vercel, deployed, deploy, production, preview, build failed, environment variable]
|
|
6
|
+
files: [vercel.json, next.config.js, next.config.ts]
|
|
7
|
+
dependencies: [next, vercel]
|
|
8
|
+
evidence:
|
|
9
|
+
files: [vercel.json, next.config.js, next.config.ts, .github/workflows/*]
|
|
10
|
+
dependencies: [next, vercel, react]
|
|
11
|
+
negative_triggers:
|
|
12
|
+
dependencies: [expo, react-native, eas-cli]
|
|
13
|
+
files: [eas.json, app.json]
|
|
14
|
+
workflow:
|
|
15
|
+
- Inspect Vercel config, Next config, package scripts, and deploy logs.
|
|
16
|
+
- Check build command, output directory, env vars, runtime, and route config.
|
|
17
|
+
- Patch the minimal config or code path that explains the failure.
|
|
18
|
+
- Verify with the project build command.
|
|
19
|
+
related_skills:
|
|
20
|
+
- github-actions-ci-cd
|
|
21
|
+
- env-secret-management
|
|
22
|
+
- build-log-debugging
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Launch Demos
|
|
2
|
+
|
|
3
|
+
These are demo scripts for explaining ContextOS quickly. They are intentionally small and visual.
|
|
4
|
+
|
|
5
|
+
## 1. Agent Hallucination Benchmark
|
|
6
|
+
|
|
7
|
+
Prompt:
|
|
8
|
+
|
|
9
|
+
```text
|
|
10
|
+
Fix deployment
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Raw agent:
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
Suggests: Vercel, Docker, Railway
|
|
17
|
+
Reason: guessed from common deployment tools
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
ContextOS:
|
|
21
|
+
|
|
22
|
+
```text
|
|
23
|
+
Detected:
|
|
24
|
+
- eas.json
|
|
25
|
+
- expo dependency
|
|
26
|
+
- GitHub workflow
|
|
27
|
+
|
|
28
|
+
Selected:
|
|
29
|
+
- eas
|
|
30
|
+
- mobile-deployment
|
|
31
|
+
- github-actions-ci-cd
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Message:
|
|
35
|
+
|
|
36
|
+
```text
|
|
37
|
+
Same prompt. Same model. Different context.
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## 2. AGENTS.md Lost In The Middle
|
|
41
|
+
|
|
42
|
+
Setup:
|
|
43
|
+
|
|
44
|
+
```text
|
|
45
|
+
AGENTS.md
|
|
46
|
+
rule 1
|
|
47
|
+
rule 2
|
|
48
|
+
...
|
|
49
|
+
IMPORTANT: Always use code-review-graph before grep.
|
|
50
|
+
...
|
|
51
|
+
rule 40
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Raw agent:
|
|
55
|
+
|
|
56
|
+
```text
|
|
57
|
+
Misses the buried rule.
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
ContextOS:
|
|
61
|
+
|
|
62
|
+
```text
|
|
63
|
+
Extracts the relevant rule and injects it before work starts.
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Message:
|
|
67
|
+
|
|
68
|
+
```text
|
|
69
|
+
Important repo rules should not depend on where they appear in a long file.
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## 3. Repo-Aware Skills
|
|
73
|
+
|
|
74
|
+
Prompt:
|
|
75
|
+
|
|
76
|
+
```text
|
|
77
|
+
fix deployed
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Repo A:
|
|
81
|
+
|
|
82
|
+
```text
|
|
83
|
+
Evidence: expo, eas.json
|
|
84
|
+
Skills: eas, mobile-deployment
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
Repo B:
|
|
88
|
+
|
|
89
|
+
```text
|
|
90
|
+
Evidence: next, vercel.json
|
|
91
|
+
Skills: vercel-deployment, github-actions-ci-cd
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Repo C:
|
|
95
|
+
|
|
96
|
+
```text
|
|
97
|
+
Evidence: Dockerfile, docker-compose.yml
|
|
98
|
+
Skills: docker, build-log-debugging
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Message:
|
|
102
|
+
|
|
103
|
+
```text
|
|
104
|
+
Context is not extra text. It changes the correct answer.
|
|
105
|
+
```
|
package/docs/roadmap.md
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
# Roadmap
|
|
2
|
+
|
|
3
|
+
ContextOS is past the core routing layer. The next work should make the value visible faster and create a community loop.
|
|
4
|
+
|
|
5
|
+
## P1: Hallucination Leaderboard
|
|
6
|
+
|
|
7
|
+
The strongest launch artifact is not another feature. It is a leaderboard that shows raw prompt-only agents making plausible guesses while ContextOS routes from repo evidence.
|
|
8
|
+
|
|
9
|
+
Layout:
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
benchmarks/
|
|
13
|
+
codex/
|
|
14
|
+
claude-code/
|
|
15
|
+
cursor/
|
|
16
|
+
gemini-cli/
|
|
17
|
+
contextos/
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Protocol:
|
|
21
|
+
|
|
22
|
+
```text
|
|
23
|
+
same repo
|
|
24
|
+
same task
|
|
25
|
+
same model when possible
|
|
26
|
+
same scoring rubric
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Example task:
|
|
30
|
+
|
|
31
|
+
```text
|
|
32
|
+
Task: Fix deployment
|
|
33
|
+
Repo: Expo app
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Example result:
|
|
37
|
+
|
|
38
|
+
```text
|
|
39
|
+
System Correct Skill
|
|
40
|
+
Raw Agent ❌
|
|
41
|
+
ContextOS + Codex ✅
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Target public table:
|
|
45
|
+
|
|
46
|
+
```text
|
|
47
|
+
Hallucination Benchmark
|
|
48
|
+
|
|
49
|
+
Claude Code: 61%
|
|
50
|
+
Cursor: 58%
|
|
51
|
+
Raw Codex: 63%
|
|
52
|
+
ContextOS + Codex: 89%
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Why it matters:
|
|
56
|
+
|
|
57
|
+
- It is easy to understand in seconds.
|
|
58
|
+
- It turns ContextOS from infrastructure into a visible correctness story.
|
|
59
|
+
- It creates content for GitHub, Hacker News, Reddit, and X/Twitter.
|
|
60
|
+
|
|
61
|
+
## P2: Agent Replay
|
|
62
|
+
|
|
63
|
+
ContextOS already records prompt context, suggested files, suggested skills, rule outcomes, telemetry, and reports. Agent Replay should turn that into a compact post-task narrative.
|
|
64
|
+
|
|
65
|
+
Planned command:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
ctx replay
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Target output:
|
|
72
|
+
|
|
73
|
+
```text
|
|
74
|
+
Prompt:
|
|
75
|
+
Fix deployment
|
|
76
|
+
|
|
77
|
+
Selected skills:
|
|
78
|
+
- eas
|
|
79
|
+
- github-actions-ci-cd
|
|
80
|
+
|
|
81
|
+
Rules followed:
|
|
82
|
+
✓ Use graph first
|
|
83
|
+
|
|
84
|
+
Files suggested:
|
|
85
|
+
✓ eas.json
|
|
86
|
+
✓ workflow.yml
|
|
87
|
+
|
|
88
|
+
Files actually touched:
|
|
89
|
+
✓ eas.json
|
|
90
|
+
✓ workflow.yml
|
|
91
|
+
|
|
92
|
+
Efficiency:
|
|
93
|
+
94%
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Why it matters:
|
|
97
|
+
|
|
98
|
+
- It proves whether the injected context helped.
|
|
99
|
+
- It turns local telemetry into a readable artifact.
|
|
100
|
+
- It gives maintainers a quick way to debug agent behavior after the fact.
|
|
101
|
+
- It is easier to demo than raw JSON reports.
|
|
102
|
+
|
|
103
|
+
Likely inputs:
|
|
104
|
+
|
|
105
|
+
- `last-prompt-context.json`
|
|
106
|
+
- `last-report.json`
|
|
107
|
+
- `prompt-history.jsonl`
|
|
108
|
+
- `report-history.jsonl`
|
|
109
|
+
- `telemetry.jsonl`
|
|
110
|
+
- current git diff/status for touched files
|
|
111
|
+
|
|
112
|
+
Non-goals for the first version:
|
|
113
|
+
|
|
114
|
+
- Cloud sync
|
|
115
|
+
- Dashboard
|
|
116
|
+
- Cross-user analytics
|
|
117
|
+
- Long-term hosted memory
|
|
118
|
+
|
|
119
|
+
## P3: Community Skill Packs
|
|
120
|
+
|
|
121
|
+
Do not build a full Hub first. Start with the local `community-skills/` folder that accepts PRs.
|
|
122
|
+
|
|
123
|
+
Initial packs:
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
community-skills/
|
|
127
|
+
eas/
|
|
128
|
+
vercel/
|
|
129
|
+
prisma/
|
|
130
|
+
redis/
|
|
131
|
+
oauth-google/
|
|
132
|
+
jwt-auth/
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
The seed packs now live in [`community-skills/`](../community-skills/). Each pack contains:
|
|
136
|
+
|
|
137
|
+
```text
|
|
138
|
+
SKILL.md
|
|
139
|
+
skill.yaml
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
The Skill Router becomes more valuable when skill packs are ContextOS-ready instead of plain markdown folders.
|
|
143
|
+
|
|
144
|
+
ContextOS-ready skill packs should include:
|
|
145
|
+
|
|
146
|
+
```yaml
|
|
147
|
+
id: oauth-google
|
|
148
|
+
name: Google OAuth
|
|
149
|
+
positive_triggers:
|
|
150
|
+
prompts: [oauth, google login, google sign in, callback]
|
|
151
|
+
files: [app/api/auth/*, auth.config.ts]
|
|
152
|
+
dependencies: [next-auth, "@auth/core"]
|
|
153
|
+
evidence:
|
|
154
|
+
files: [app/api/auth/*, auth.config.ts, .env.example]
|
|
155
|
+
dependencies: [next-auth, "@auth/core"]
|
|
156
|
+
negative_triggers:
|
|
157
|
+
prompts: [jwt only, password login]
|
|
158
|
+
dependencies: [jsonwebtoken]
|
|
159
|
+
workflow:
|
|
160
|
+
- Inspect auth provider config, callback URLs, scopes, secrets, and session creation.
|
|
161
|
+
- Verify frontend login entrypoints and backend callback routes agree.
|
|
162
|
+
- Patch the smallest auth boundary while preserving session conventions.
|
|
163
|
+
- Verify with focused auth tests, typecheck, or local callback flow.
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
Possible future install flow:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
ctx skills install oauth-google
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
or package-based:
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
npm install skill-oauth-google
|
|
176
|
+
ctx sync --skills
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
Why it matters:
|
|
180
|
+
|
|
181
|
+
- It creates a network effect around reusable agent capabilities.
|
|
182
|
+
- It gives skill authors a structured contract: triggers, evidence, negative gates, workflow.
|
|
183
|
+
- It lets ContextOS route capabilities by project evidence instead of popularity or keyword overlap.
|
|
184
|
+
|
|
185
|
+
Non-goals for the first version:
|
|
186
|
+
|
|
187
|
+
- Full marketplace UI
|
|
188
|
+
- Paid skill hosting
|
|
189
|
+
- Cloud account system
|
|
190
|
+
- Remote vector database
|
|
191
|
+
|
|
192
|
+
## P4: ContextOS Ready
|
|
193
|
+
|
|
194
|
+
Certification can help the ecosystem self-organize without a hosted service.
|
|
195
|
+
|
|
196
|
+
```text
|
|
197
|
+
ContextOS Ready
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
Repository requirements:
|
|
201
|
+
|
|
202
|
+
```text
|
|
203
|
+
AGENTS.md
|
|
204
|
+
skills/
|
|
205
|
+
workflows/
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
Command:
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
ctx doctor
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Target output:
|
|
215
|
+
|
|
216
|
+
```text
|
|
217
|
+
Repository Score
|
|
218
|
+
|
|
219
|
+
Rules: 92
|
|
220
|
+
Skills: 88
|
|
221
|
+
Workflows: 84
|
|
222
|
+
|
|
223
|
+
Overall:
|
|
224
|
+
ContextOS Ready Gold
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
Why it matters:
|
|
228
|
+
|
|
229
|
+
- It gives projects a concrete target.
|
|
230
|
+
- It creates a badge people can add to README files.
|
|
231
|
+
- It encourages community contributions without requiring a cloud product.
|
|
232
|
+
|
|
233
|
+
MVP scope:
|
|
234
|
+
|
|
235
|
+
- Local-only scoring.
|
|
236
|
+
- No hosted account.
|
|
237
|
+
- No external leaderboard dependency.
|
|
238
|
+
- Rules score from project `AGENTS.md`.
|
|
239
|
+
- Skills score from project skill packs with `SKILL.md` and `skill.yaml`.
|
|
240
|
+
- Workflows score from project workflow markdown with agent handoff chains.
|
|
241
|
+
|
|
242
|
+
## P5: Auto Skill Extraction
|
|
243
|
+
|
|
244
|
+
Today, humans write `skill.yaml`. The research direction is to let ContextOS propose skill packs from repository evidence.
|
|
245
|
+
|
|
246
|
+
Possible command:
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
ctx skill generate
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
Input:
|
|
253
|
+
|
|
254
|
+
```text
|
|
255
|
+
repo
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
Output:
|
|
259
|
+
|
|
260
|
+
```text
|
|
261
|
+
Detected Skill:
|
|
262
|
+
nestjs-module
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
Target generated pack:
|
|
266
|
+
|
|
267
|
+
```text
|
|
268
|
+
.codex/skills/nestjs-module/
|
|
269
|
+
SKILL.md
|
|
270
|
+
skill.yaml
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
Research shape:
|
|
274
|
+
|
|
275
|
+
- Detect repeated project capabilities from dependencies, config files, route/controller names, tests, and recent git activity.
|
|
276
|
+
- Generate `positive_triggers`, `evidence`, `negative_triggers`, and `workflow`.
|
|
277
|
+
- Mark generated packs as drafts until reviewed.
|
|
278
|
+
- Let an agent or maintainer publish a cleaned-up pack into `community-skills/`.
|
|
279
|
+
|
|
280
|
+
Guardrails:
|
|
281
|
+
|
|
282
|
+
- Do not auto-publish generated skills.
|
|
283
|
+
- Do not infer high confidence from dependency names alone.
|
|
284
|
+
- Prefer explainable evidence over opaque model output.
|
|
285
|
+
- Keep generated workflows short and editable.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minhpnq1807/contextos",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Task-aware AGENTS.md context injection and compliance reporting for Codex, Claude Code, and Antigravity.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,10 +10,13 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"bin/",
|
|
12
12
|
"plugins/",
|
|
13
|
+
".codex/skills/",
|
|
14
|
+
".codex/workflows/",
|
|
13
15
|
".agents/",
|
|
14
16
|
"README.md",
|
|
15
17
|
"DEMO.md",
|
|
16
18
|
"LAUNCH.md",
|
|
19
|
+
"community-skills/",
|
|
17
20
|
"eval/",
|
|
18
21
|
"docs/",
|
|
19
22
|
"LICENSE",
|