okhp3-replit-multi-artifact

okhp3-replit-multi-artifact is a skill for Claude Code, Codex from OKHP3/skillz. It costs 139 tokens per session (2,415 once invoked), scanned A, original, MIT.

A set of rules for building and debugging several related Replit applications in one pnpm monorepo, which is a repository containing multiple projects. It covers shared code, ports, URLs, workflows, and previews.

In plain words
What is it for?
Use it when creating or fixing web, slide, video, or mobile artifacts in a Replit multi-project workspace, especially when projects share libraries or fail to start correctly.
Why use it?
It addresses failures that can leave previews blank, cause port conflicts, break imports between projects, or use the wrong workflow names. It also helps prevent package-version drift in pnpm catalogs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; installed under .agents/ (shared by several agents).

Good fit Use it when creating or fixing web, slide, video, or mobile artifacts in a Replit multi-project workspace, especially when projects share libraries or fail to start correctly.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/okhp3/skillz/okhp3-replit-multi-artifact
View source ↗ OKHP3/skillz
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OKHP3/skillz --skill okhp3-replit-multi-artifact
Clone the repo
git clone --depth 1 https://github.com/OKHP3/skillz

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for okhp3-replit-multi-artifact

README.md
[![agentmods](https://agentmods.dev/badge/skills/okhp3/skillz/okhp3-replit-multi-artifact/github.svg)](https://agentmods.dev/skills/okhp3/skillz/okhp3-replit-multi-artifact)
Your own site
<a href="https://agentmods.dev/skills/okhp3/skillz/okhp3-replit-multi-artifact"><img src="https://agentmods.dev/badge/skills/okhp3/skillz/okhp3-replit-multi-artifact/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for okhp3-replit-multi-artifact

Your own site · 80×15
<a href="https://agentmods.dev/skills/okhp3/skillz/okhp3-replit-multi-artifact"><img src="https://agentmods.dev/badge/skills/okhp3/skillz/okhp3-replit-multi-artifact.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 139 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,415 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00139 $0.02415
Opus 5 $0.00069 $0.01208
Sonnet 5 $0.00028 $0.00483
Haiku 4.5 $0.00014 $0.00242

Measured 5d ago against content hash 5c3358946718, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

okhp3-replit-multi-artifact scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/okhp3-replit-multi-artifact/SKILL.md · 233 lines

How it starts

The opening of the file, as written. The whole thing — 233 lines — stays where its author put it; the contents beside it link to each section on GitHub.

okhp3-replit-multi-artifact

OverKill Hill P³ · overkillhill.com · github.com/OKHP3

Each of the following rules has caused a multi-turn debugging session in a real project. None of them is in the artifact creation walkthrough. This skill exists because knowing the rule before you hit the failure is worth four turns of debugging.


Scope

In scope Out of scope
BASE_URL prefix rule Artifact bootstrapping — read the artifacts skill
PORT env var discipline Workflow restart mechanics — read the workflows skill
Managed workflow naming Package installation — read the package-management skill
pnpm catalog drift Secrets / env vars — read the environment-secrets skill
Cross-artifact shared libraries
Blank-preview debug checklist

Artifact kinds and their skills

Kind Bootstrap skill to read Notes
web (React/Vite) react-vite OpenAPI-first for fullstack; skip codegen for frontend-only
slides slides Read BEFORE creating — it runs pre-generation questions
video video-js Delegate entire build to a DESIGN subagent
mobile expo AsyncStorage by default; no backend on first build
design design-system-creation Only on explicit ask; drives tokens.json
api (none) Pre-configured; do not re-create
mockup-sandbox mockup-sandbox Pre-installed; do not call createArtifact

Never call createArtifact twice for the same slug. If artifacts/<slug>/ already exists, the call fails.


Rule 1: BASE_URL prefix — the most common silent failure

Every route and API call in an artifact must prepend import.meta.env.BASE_URL (Vite artifacts) or the equivalent base path helper.

Why. Replit uses path-based routing. Each artifact is mounted at a unique preview path (e.g. /my-app). A root-relative URL like /api/users escapes the artifact's path prefix and hits the wrong route — or a 404. The failure is silent: the URL looks correct in code, the app loads, but API calls return unexpected responses.

Read the full file on GitHub · 233 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 233 lines · 139 tokens per session scan A 5c3358946718

Subscribe to this mod's changes

okhp3-replit-multi-artifact is a skill published in the GitHub repository OKHP3/skillz (3 stars, last pushed yesterday), licensed MIT. It adds 139 tokens to every session and 2,415 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

frontend-conventions

Coding conventions, architecture patterns, and testing rules for the SkillHub React frontend. Ensures agents follow Feature-Sliced Design and use the generated OpenAPI types.

iflytek/skillhub · 36 tokens

react-expert

Use when building React 18+ applications in .jsx or .tsx files, Next.js App Router projects, or create-react-app setups. Creates components, implements custom hooks, debugs rendering issues, migrates class components to functional, and implements state management. Invoke for Server Components, Suspense boundaries…

Jeffallan/claude-skills · 79 tokens

tanstack-start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 +…

jezweb/claude-skills · 115 tokens

react-native

React Native and Expo patterns for building performant mobile apps. Covers list performance, animations with Reanimated, navigation, UI patterns, state management, platform-specific code, and Expo workflows. Use when building or reviewing React Native code. Triggers: 'react native', 'expo', 'mobile app', 'react native…

jezweb/claude-skills · 91 tokens

react-component-generator

Generate React components with TypeScript, proper props, hooks, and accessibility. Use when creating new React components, UI elements, or refactoring existing components.

OneWave-AI/claude-skills · 35 tokens

performance-web-vitals

Expert guide for Web Performance optimization: Core Web Vitals (LCP, INP, CLS), bundle analysis, image optimization, rendering strategies, and Lighthouse score improvement / Panduan ahli untuk optimasi performa web: Core Web Vitals (LCP, INP, CLS), analisis bundle, optimasi gambar, strategi rendering, dan peningkatan…

roedyrustam/vibes-plug · 79 tokens