Skip to content

Commit 3253f47

Browse files
author
Hoa Dang DNA PC
committed
feat: v0.6.0 — 66 skills, GitHub links, Cloudflare fix, Wave 2 depth skills
- Add 15 Wave 2 depth sub-skills (PM/Finance/Legal/HR/SupplyChain/Strategy/Marketing/Data/CX) - Add GitHub link to header, homepage hero, and installation page - Add git clone section to installation page - Fix skills.json from 36 to 66 entries with correct categories - Fix next.config.ts output: standalone -> export for Cloudflare Pages - Fix CHANGELOG URLs from example.com to github.com/hoavdc/CodexKit - Fix outdated version refs (v0.4.0 -> v0.6.0) and skill counts (36 -> 66) - Add repository/homepage/bugs metadata to package.json - Update START-HERE scripts to v0.6.0 with 66 skills
1 parent 97f7401 commit 3253f47

7 files changed

Lines changed: 239 additions & 35 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
114114
- Cross-platform skill installation scripts and a validation script.
115115
- New docs site positioned for OpenAI Codex and ChatGPT users.
116116

117-
[Unreleased]: https://example.com/codexkit/compare/v0.6.0...HEAD
118-
[0.6.0]: https://example.com/codexkit/releases/tag/v0.6.0
119-
[0.5.0]: https://example.com/codexkit/releases/tag/v0.5.0
120-
[0.4.0]: https://example.com/codexkit/releases/tag/v0.4.0
121-
[0.3.1]: https://example.com/codexkit/releases/tag/v0.3.1
122-
[0.3.0]: https://example.com/codexkit/releases/tag/v0.3.0
123-
[0.2.0]: https://example.com/codexkit/releases/tag/v0.2.0
124-
[0.1.0]: https://example.com/codexkit/releases/tag/v0.1.0
117+
[Unreleased]: https://github.com/hoavdc/CodexKit/compare/v0.6.0...HEAD
118+
[0.6.0]: https://github.com/hoavdc/CodexKit/releases/tag/v0.6.0
119+
[0.5.0]: https://github.com/hoavdc/CodexKit/releases/tag/v0.5.0
120+
[0.4.0]: https://github.com/hoavdc/CodexKit/releases/tag/v0.4.0
121+
[0.3.1]: https://github.com/hoavdc/CodexKit/releases/tag/v0.3.1
122+
[0.3.0]: https://github.com/hoavdc/CodexKit/releases/tag/v0.3.0
123+
[0.2.0]: https://github.com/hoavdc/CodexKit/releases/tag/v0.2.0
124+
[0.1.0]: https://github.com/hoavdc/CodexKit/releases/tag/v0.1.0
125125

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
"name": "codexkit",
33
"version": "0.6.0",
44
"private": true,
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/hoavdc/CodexKit.git"
8+
},
9+
"homepage": "https://github.com/hoavdc/CodexKit",
10+
"bugs": {
11+
"url": "https://github.com/hoavdc/CodexKit/issues"
12+
},
513
"description": "Open-source operating kit for people using OpenAI Codex and ChatGPT across engineering, high-reasoning work, and repeatable office operations.",
614
"engines": {
715
"node": ">=20.9.0",

web/next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { NextConfig } from "next";
22
import createMDX from "@next/mdx";
33

44
const nextConfig: NextConfig = {
5-
output: "standalone",
5+
output: "export",
66
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
77
reactCompiler: true,
88
};

web/src/app/docs/installation/page.tsx

Lines changed: 39 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,58 @@ export default function InstallationPage() {
1515
<p className="mt-4 text-base leading-8 text-muted-foreground">
1616
CodexKit follows the official Codex Skills layout: each skill ships with <code>SKILL.md</code>, optional <code>agents/openai.yaml</code>, and standard <code>.agents/skills</code> discovery paths. The pack now covers engineering, high-reasoning work, low-reasoning office automation, department templates, and starter workspaces across project, finance, legal, operations, HR, strategy, analytics, marketing, and CX workflows.
1717
</p>
18-
<p className="mt-4 text-sm leading-7 text-muted-foreground">
19-
Reference:{" "}
18+
<div className="mt-6 flex flex-col gap-3 sm:flex-row">
2019
<a
21-
href="https://developers.openai.com/codex/skills"
20+
href="https://github.com/hoavdc/CodexKit"
2221
target="_blank"
2322
rel="noreferrer"
24-
className="font-medium text-zinc-900 underline decoration-zinc-300 underline-offset-4 dark:text-zinc-50 dark:decoration-zinc-700"
23+
className="inline-flex items-center justify-center gap-2 rounded-full bg-zinc-900 px-6 py-3 text-sm font-semibold text-white transition-transform hover:-translate-y-0.5 dark:bg-zinc-50 dark:text-zinc-900"
2524
>
26-
OpenAI Codex Skills documentation
25+
⭐ View on GitHub
2726
</a>
28-
</p>
27+
<a
28+
href="https://github.com/hoavdc/CodexKit/releases"
29+
target="_blank"
30+
rel="noreferrer"
31+
className="inline-flex items-center justify-center gap-2 rounded-full border border-border bg-card px-6 py-3 text-sm font-semibold text-foreground transition-transform hover:-translate-y-0.5"
32+
>
33+
Download latest release
34+
</a>
35+
</div>
36+
<div className="mt-6 flex flex-col gap-2 sm:flex-row sm:gap-6 text-sm text-muted-foreground">
37+
<span>
38+
Reference:{" "}
39+
<a
40+
href="https://developers.openai.com/codex/skills"
41+
target="_blank"
42+
rel="noreferrer"
43+
className="font-medium text-zinc-900 underline decoration-zinc-300 underline-offset-4 dark:text-zinc-50 dark:decoration-zinc-700"
44+
>
45+
OpenAI Codex Skills documentation
46+
</a>
47+
</span>
48+
<span>Requires Node <code>20.9+</code> and npm <code>10+</code></span>
49+
</div>
50+
</div>
51+
52+
<section className="mb-12 panel p-8">
53+
<h2 className="text-2xl font-semibold tracking-tight text-zinc-900 dark:text-zinc-50">Clone from GitHub</h2>
54+
<pre className="mt-5 overflow-x-auto rounded-3xl bg-[#161617] p-5 text-sm leading-7 text-[#f8f3ea]">
55+
<code>{`git clone https://github.com/hoavdc/CodexKit.git
56+
cd CodexKit`}</code>
57+
</pre>
2958
<p className="mt-4 text-sm leading-7 text-muted-foreground">
30-
The docs app and local verification flow target Node <code>20.9+</code> and npm <code>10+</code>.
59+
This is the recommended way to get CodexKit. After cloning, follow the quick install steps below.
3160
</p>
32-
</div>
61+
</section>
3362

3463
<section className="mb-12 panel p-8">
3564
<h2 className="text-2xl font-semibold tracking-tight text-zinc-900 dark:text-zinc-50">Fastest path for non-coders</h2>
3665
<ol className="mt-5 space-y-4 text-sm leading-7 text-muted-foreground">
37-
<li>1. Open the GitHub Releases page and download <code>codexkit-starter-pack-v0.4.0.zip</code>.</li>
66+
<li>1. Open the <a href="https://github.com/hoavdc/CodexKit/releases" target="_blank" rel="noreferrer" className="font-medium text-zinc-900 underline decoration-zinc-300 underline-offset-4 dark:text-zinc-50 dark:decoration-zinc-700">GitHub Releases page</a> and download <code>codexkit-starter-pack-v0.6.0.zip</code>.</li>
3867
<li>2. Unzip the package anywhere on your machine.</li>
3968
<li>3. On Windows, double-click <code>START-HERE-WINDOWS.cmd</code>. On macOS or Linux, run <code>bash ./START-HERE.sh</code>.</li>
40-
<li>4. Restart Codex and type <code>/skills</code> to confirm all 36 skills appear.</li>
69+
<li>4. Restart Codex and type <code>/skills</code> to confirm all 66 skills appear.</li>
4170
<li>5. Open <code>skill-finder.md</code> to browse skills by situation.</li>
4271
<li>6. Optional: create a starter workspace with <code>CREATE-WORKSPACE-WINDOWS.cmd</code> or <code>bash ./CREATE-WORKSPACE.sh</code>.</li>
4372
</ol>

web/src/app/page.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ export default function Home() {
7171
Read the docs
7272
<ArrowRight className="h-4 w-4" />
7373
</Link>
74+
<a
75+
href="https://github.com/hoavdc/CodexKit"
76+
target="_blank"
77+
rel="noreferrer"
78+
className="inline-flex items-center justify-center gap-2 rounded-full border border-border bg-card px-6 py-3 text-sm font-semibold text-foreground transition-transform hover:-translate-y-0.5"
79+
>
80+
⭐ GitHub
81+
</a>
7482
<Link
7583
href="/docs/installation"
7684
className="inline-flex items-center justify-center gap-2 rounded-full border border-border bg-card px-6 py-3 text-sm font-semibold text-foreground transition-transform hover:-translate-y-0.5"

web/src/components/layout/header/index.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import MobileMenu from "@/components/layout/header/components/mobile-menu";
44
import SearchDialog from "@/components/layout/header/components/search-dialog";
55
import ThemeToggle from "@/components/layout/header/components/theme-toggle";
66
import { Button } from "@/components/ui/button";
7-
import { ArrowRight } from "lucide-react";
7+
import { ArrowRight, Github } from "lucide-react";
88

99
export default function Header() {
1010
return (
@@ -52,6 +52,15 @@ export default function Header() {
5252
<div className="md:hidden">
5353
<SearchDialog />
5454
</div>
55+
<a
56+
href="https://github.com/hoavdc/CodexKit"
57+
target="_blank"
58+
rel="noreferrer"
59+
className="inline-flex items-center justify-center rounded-full p-2 text-muted-foreground hover:bg-card/70 hover:text-foreground transition-colors"
60+
aria-label="View on GitHub"
61+
>
62+
<Github className="h-5 w-5" />
63+
</a>
5564
<Link href="/docs/installation" className="hidden sm:block">
5665
<Button className="rounded-full">
5766
Install

web/src/services/skills.json

Lines changed: 165 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,16 @@
4949
"description": "Write one-page executive briefs and decision memos with recommendation, risks, and next steps.",
5050
"category": "Knowledge Work & Communication"
5151
},
52+
{
53+
"name": "codexkit-report-summarizer",
54+
"description": "Condense long reports into structured summaries with key findings, implications, and actions.",
55+
"category": "Knowledge Work & Communication"
56+
},
57+
{
58+
"name": "codexkit-presentation-outliner",
59+
"description": "Structure presentations into slide-by-slide outlines with key messages and data callouts.",
60+
"category": "Knowledge Work & Communication"
61+
},
5262
{
5363
"name": "codexkit-inbox-priority-triage",
5464
"description": "Sort inboxes, request queues, and ad hoc asks into clear priorities, owners, and response buckets.",
@@ -94,6 +104,11 @@
94104
"description": "Turn launch dates, campaign inputs, and asset requests into a structured content calendar and workback plan.",
95105
"category": "Routine Automation & Office Ops"
96106
},
107+
{
108+
"name": "codexkit-email-composer",
109+
"description": "Draft clear, professional business emails from rough notes, context, or instructions.",
110+
"category": "Routine Automation & Office Ops"
111+
},
97112
{
98113
"name": "codexkit-project-governance-pilot",
99114
"description": "Stand up governance, cadence, decision rights, and RAID structure for complex initiatives.",
@@ -104,6 +119,51 @@
104119
"description": "Build portfolio-level RAID and RAG views across workstreams, milestones, and dependencies.",
105120
"category": "Project & Portfolio Management"
106121
},
122+
{
123+
"name": "codexkit-sprint-planning-assistant",
124+
"description": "Organize backlog, estimate effort, balance capacity, and produce sprint commitment summaries.",
125+
"category": "Project & Portfolio Management"
126+
},
127+
{
128+
"name": "codexkit-backlog-refiner",
129+
"description": "Refine backlog items into INVEST-quality user stories with Given/When/Then acceptance criteria.",
130+
"category": "Project & Portfolio Management"
131+
},
132+
{
133+
"name": "codexkit-scrum-retrospective",
134+
"description": "Facilitate sprint retrospectives using 5 formats matched to team maturity with action items.",
135+
"category": "Project & Portfolio Management"
136+
},
137+
{
138+
"name": "codexkit-okr-writer",
139+
"description": "Write and cascade OKRs with outcome-based Key Results, alignment checks, and check-in templates.",
140+
"category": "Project & Portfolio Management"
141+
},
142+
{
143+
"name": "codexkit-risk-register",
144+
"description": "Build a project risk register with P×I scoring, response strategies, and ROAM board integration.",
145+
"category": "Project & Portfolio Management"
146+
},
147+
{
148+
"name": "codexkit-kanban-flow-analyzer",
149+
"description": "Analyze Kanban flow metrics — cycle time, throughput, WIP limits, bottlenecks, and Monte Carlo forecasting.",
150+
"category": "Project & Portfolio Management"
151+
},
152+
{
153+
"name": "codexkit-safe-pi-planning",
154+
"description": "Facilitate SAFe PI Planning with ART sync, feature breakdown, ROAM risks, and PI objectives.",
155+
"category": "Project & Portfolio Management"
156+
},
157+
{
158+
"name": "codexkit-pmbok8-earned-value",
159+
"description": "Track Earned Value with EVM calculations, CPI/SPI analysis, EAC forecasting, and corrective actions.",
160+
"category": "Project & Portfolio Management"
161+
},
162+
{
163+
"name": "codexkit-pmbok8-stakeholder-register",
164+
"description": "Build and maintain a stakeholder register with engagement assessment and RACI alignment.",
165+
"category": "Project & Portfolio Management"
166+
},
107167
{
108168
"name": "codexkit-finance-variance-story",
109169
"description": "Turn budget or forecast variances into a management-ready finance narrative.",
@@ -119,6 +179,46 @@
119179
"description": "Map policies and evidence against AML, privacy, audit, or control requirements.",
120180
"category": "Finance, Legal & Risk"
121181
},
182+
{
183+
"name": "codexkit-budget-variance-explainer",
184+
"description": "Turn budget vs actual data into plain-language explanations with actions for non-finance managers.",
185+
"category": "Finance, Legal & Risk"
186+
},
187+
{
188+
"name": "codexkit-fpa-scenario-modeling",
189+
"description": "Build Base/Bull/Bear P&L scenarios with sensitivity analysis and cash flow projections.",
190+
"category": "Finance, Legal & Risk"
191+
},
192+
{
193+
"name": "codexkit-financial-statement-analyzer",
194+
"description": "Analyze financial statements with ratio analysis, DuPont decomposition, trend spotting, and red flags.",
195+
"category": "Finance, Legal & Risk"
196+
},
197+
{
198+
"name": "codexkit-contract-drafter",
199+
"description": "Draft contracts from a clause library with risk calibration and negotiation guides.",
200+
"category": "Finance, Legal & Risk"
201+
},
202+
{
203+
"name": "codexkit-legal-memo-writer",
204+
"description": "Write legal analysis memos using the IRAC framework with risk-tiered conclusions.",
205+
"category": "Finance, Legal & Risk"
206+
},
207+
{
208+
"name": "codexkit-fpa-rolling-forecast",
209+
"description": "Build 12–18 month rolling forecasts with waterfall bridge analysis and assumption logs.",
210+
"category": "Finance, Legal & Risk"
211+
},
212+
{
213+
"name": "codexkit-audit-readiness-checker",
214+
"description": "Assess audit readiness with assertion mapping, RAG scoring, and remediation planning.",
215+
"category": "Finance, Legal & Risk"
216+
},
217+
{
218+
"name": "codexkit-legal-due-diligence",
219+
"description": "Conduct legal due diligence across 9 workstreams with risk matrix and deal-breaker flags.",
220+
"category": "Finance, Legal & Risk"
221+
},
122222
{
123223
"name": "codexkit-talent-review-calibrator",
124224
"description": "Structure talent reviews, succession risk, and development actions with evidence-based calibration.",
@@ -134,6 +234,46 @@
134234
"description": "Define Lean Six Sigma improvement work with scope, baseline, CTQs, and improvement path.",
135235
"category": "People, Operations & Supply Chain"
136236
},
237+
{
238+
"name": "codexkit-job-description-writer",
239+
"description": "Write job descriptions with SHRM competency alignment, inclusive language, and salary benchmarking.",
240+
"category": "People, Operations & Supply Chain"
241+
},
242+
{
243+
"name": "codexkit-performance-review-writer",
244+
"description": "Write performance reviews using SBI feedback model, SMART goals, and bias checks.",
245+
"category": "People, Operations & Supply Chain"
246+
},
247+
{
248+
"name": "codexkit-process-mapper",
249+
"description": "Map business processes end-to-end with swimlane diagrams, 8 Lean Wastes, and efficiency metrics.",
250+
"category": "People, Operations & Supply Chain"
251+
},
252+
{
253+
"name": "codexkit-root-cause-analyzer",
254+
"description": "Find root cause using 5 Whys, Fishbone, Pareto analysis, and CAPA corrective actions.",
255+
"category": "People, Operations & Supply Chain"
256+
},
257+
{
258+
"name": "codexkit-onboarding-plan-creator",
259+
"description": "Create 30-60-90 day onboarding plans with pre-boarding sequence and milestone checkpoints.",
260+
"category": "People, Operations & Supply Chain"
261+
},
262+
{
263+
"name": "codexkit-interview-guide-builder",
264+
"description": "Build structured interview guides with STAR method, scoring rubrics, and bias safeguards.",
265+
"category": "People, Operations & Supply Chain"
266+
},
267+
{
268+
"name": "codexkit-supplier-evaluation",
269+
"description": "Evaluate suppliers with weighted scorecards, tier classification, and improvement plans.",
270+
"category": "People, Operations & Supply Chain"
271+
},
272+
{
273+
"name": "codexkit-procurement-rfp-writer",
274+
"description": "Write procurement RFPs/RFQs with evaluation methodology and ISO 20400 alignment.",
275+
"category": "People, Operations & Supply Chain"
276+
},
137277
{
138278
"name": "codexkit-strategy-scorecard-builder",
139279
"description": "Translate strategy into a scorecard, strategy map, OKR bridge, and initiative portfolio.",
@@ -155,28 +295,38 @@
155295
"category": "Strategy, Analytics & Growth"
156296
},
157297
{
158-
"name": "codexkit-email-composer",
159-
"description": "Draft clear, professional business emails from rough notes, context, or instructions.",
160-
"category": "Routine Automation & Office Ops"
298+
"name": "codexkit-go-to-market-planner",
299+
"description": "Plan GTM launches with TAM/SAM/SOM analysis, positioning, messaging, and channel strategy.",
300+
"category": "Strategy, Analytics & Growth"
161301
},
162302
{
163-
"name": "codexkit-report-summarizer",
164-
"description": "Condense long reports into structured summaries with key findings, implications, and actions.",
165-
"category": "Knowledge Work & Communication"
303+
"name": "codexkit-customer-journey-mapper",
304+
"description": "Map 7 lifecycle stages with Moments of Truth, emotion curves, and CX improvements.",
305+
"category": "Strategy, Analytics & Growth"
166306
},
167307
{
168-
"name": "codexkit-sprint-planning-assistant",
169-
"description": "Organize backlog, estimate effort, balance capacity, and produce sprint commitment summaries.",
170-
"category": "Project & Portfolio Management"
308+
"name": "codexkit-strategic-analysis-porter",
309+
"description": "Run strategic analysis with Porter Five Forces, PESTEL macro scan, and SWOT cross-analysis.",
310+
"category": "Strategy, Analytics & Growth"
171311
},
172312
{
173-
"name": "codexkit-budget-variance-explainer",
174-
"description": "Turn budget vs actual data into plain-language explanations with actions for non-finance managers.",
175-
"category": "Finance, Legal & Risk"
313+
"name": "codexkit-competitor-intelligence",
314+
"description": "Build competitive intelligence briefs with CI cycle, feature matrix, and battle cards.",
315+
"category": "Strategy, Analytics & Growth"
176316
},
177317
{
178-
"name": "codexkit-presentation-outliner",
179-
"description": "Structure presentations into slide-by-slide outlines with key messages and data callouts.",
180-
"category": "Knowledge Work & Communication"
318+
"name": "codexkit-campaign-brief-writer",
319+
"description": "Write marketing campaign briefs with SMART objectives, audience personas, and KPI targets.",
320+
"category": "Strategy, Analytics & Growth"
321+
},
322+
{
323+
"name": "codexkit-churn-risk-analyzer",
324+
"description": "Analyze churn risk with health scoring, customer segmentation, and intervention playbooks.",
325+
"category": "Strategy, Analytics & Growth"
326+
},
327+
{
328+
"name": "codexkit-a-b-test-planner",
329+
"description": "Design rigorous A/B tests with hypothesis, sample sizing, MDE, guardrail metrics, and rollout playbook.",
330+
"category": "Strategy, Analytics & Growth"
181331
}
182332
]

0 commit comments

Comments
 (0)