Skip to content

Instantly share code, notes, and snippets.

View ivalsaraj's full-sized avatar
💭
Making ✨awesome things that helps ✨super awesome people 👩‍💻

Valsaraj R ivalsaraj

💭
Making ✨awesome things that helps ✨super awesome people 👩‍💻
View GitHub Profile
@ivalsaraj
ivalsaraj / SKILL.md
Created February 22, 2026 07:16 — forked from LuD1161/SKILL.md
codex-review - claude skill file
name description user_invocable
codex-review
Send the current plan to OpenAI Codex CLI for iterative review. Claude and Codex go back-and-forth until Codex approves the plan.
true

Codex Plan Review (Iterative)

Send the current implementation plan to OpenAI Codex for review. Claude revises the plan based on Codex's feedback and re-submits until Codex approves. Max 5 rounds.

@ivalsaraj
ivalsaraj / worker.js
Created November 15, 2020 10:16 — forked from tobiaslins/worker.js
Notion Custom Domain using Cloudflare Workers + Splitbee Analytics
const MY_DOMAIN = "help.splitbee.io"
const START_PAGE = "https://www.notion.so/splitbee/Help-Center-bbf26e2b70574901b9c98e5d11e449de"
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "GET, HEAD, POST,PUT, OPTIONS",