replit-policy-guardrailsClaude Skill
Implement Replit lint rules, policy enforcement, and automated guardrails.
| name | replit-policy-guardrails |
| description | Implement Replit lint rules, policy enforcement, and automated guardrails. Use when setting up code quality rules for Replit integrations, implementing pre-commit hooks, or configuring CI policy checks for Replit best practices. Trigger with phrases like "replit policy", "replit lint", "replit guardrails", "replit best practices check", "replit eslint". |
| allowed-tools | Read, Write, Edit, Bash(npx:*) |
| version | 1.0.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
Replit Policy & Guardrails
Overview
Automated policy enforcement and guardrails for Replit integrations.
Prerequisites
- ESLint configured in project
- Pre-commit hooks infrastructure
- CI/CD pipeline with policy checks
- TypeScript for type enforcement
ESLint Rules
Custom Replit Plugin
// eslint-plugin-replit/rules/no-hardcoded-keys.js module.exports = { meta: { type: 'problem', docs: { description: 'Disallow hardcoded Replit API keys', }, fixable: 'code', }, create(context) { return { Literal(node) { if (typeof node.value === 'string') { if (node.value.match(/^sk_(live|test)_[a-zA-Z0-9]{24,}/)) { context.report({ node, message: 'Hardcoded Replit API key detected', }); } } }, }; }, };
ESLint Configuration
// .eslintrc.js module.exports = { plugins: ['replit'], rules: { 'replit/no-hardcoded-keys': 'error', 'replit/require-error-handling': 'warn', 'replit/use-typed-client': 'warn', }, };
Pre-Commit Hooks
# .pre-commit-config.yaml repos: - repo: local hooks: - id: replit-secrets-check name: Check for Replit secrets entry: bash -c 'git diff --cached --name-only | xargs grep -l "sk_live_" && exit 1 || exit 0' language: system pass_filenames: false - id: replit-config-validate name: Validate Replit configuration entry: node scripts/validate-replit-config.js language: node files: '\.replit\.json$'
TypeScript Strict Patterns
// Enforce typed configuration interface ReplitStrictConfig { apiKey: string; // Required environment: 'development' | 'staging' | 'production'; // Enum timeout: number; // Required number, not optional retries: number; } // Disallow any in Replit code // @ts-expect-error - Using any is forbidden const client = new Client({ apiKey: any }); // Prefer this const client = new ReplitClient(config satisfies ReplitStrictConfig);
Architecture Decision Records
ADR Template
# ADR-001: Replit Client Initialization ## Status Accepted ## Context We need to decide how to initialize the Replit client across our application. ## Decision We will use the singleton pattern with lazy initialization. ## Consequences - Pro: Single client instance, connection reuse - Pro: Easy to mock in tests - Con: Global state requires careful lifecycle management ## Enforcement - ESLint rule: replit/use-singleton-client - CI check: grep for "new ReplitClient(" outside allowed files
Policy-as-Code (OPA)
# replit-policy.rego package replit # Deny production API keys in non-production environments deny[msg] { input.environment != "production" startswith(input.apiKey, "sk_live_") msg := "Production API keys not allowed in non-production environment" } # Require minimum timeout deny[msg] { input.timeout < 10000 msg := sprintf("Timeout too low: %d < 10000ms minimum", [input.timeout]) } # Require retry configuration deny[msg] { not input.retries msg := "Retry configuration is required" }
CI Policy Checks
# .github/workflows/replit-policy.yml name: Replit Policy Check on: [push, pull_request] jobs: policy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Check for hardcoded secrets run: | if grep -rE "sk_(live|test)_[a-zA-Z0-9]{24,}" --include="*.ts" --include="*.js" .; then echo "ERROR: Hardcoded Replit keys found" exit 1 fi - name: Validate configuration schema run: | npx ajv validate -s replit-config.schema.json -d config/replit/*.json - name: Run ESLint Replit rules run: npx eslint --plugin replit --rule 'replit/no-hardcoded-keys: error' src/
Runtime Guardrails
// Prevent dangerous operations in production const BLOCKED_IN_PROD = ['deleteAll', 'resetData', 'migrateDown']; function guardReplitOperation(operation: string): void { const isProd = process.env.NODE_ENV === 'production'; if (isProd && BLOCKED_IN_PROD.includes(operation)) { throw new Error(`Operation '${operation}' blocked in production`); } } // Rate limit protection function guardRateLimits(requestsInWindow: number): void { const limit = parseInt(process.env.REPLIT_RATE_LIMIT || '100'); if (requestsInWindow > limit * 0.9) { console.warn('Approaching Replit rate limit'); } if (requestsInWindow >= limit) { throw new Error('Replit rate limit exceeded - request blocked'); } }
Instructions
Step 1: Create ESLint Rules
Implement custom lint rules for Replit patterns.
Step 2: Configure Pre-Commit Hooks
Set up hooks to catch issues before commit.
Step 3: Add CI Policy Checks
Implement policy-as-code in CI pipeline.
Step 4: Enable Runtime Guardrails
Add production safeguards for dangerous operations.
Output
- ESLint plugin with Replit rules
- Pre-commit hooks blocking secrets
- CI policy checks passing
- Runtime guardrails active
Error Handling
| Issue | Cause | Solution |
|---|---|---|
| ESLint rule not firing | Wrong config | Check plugin registration |
| Pre-commit skipped | --no-verify | Enforce in CI |
| Policy false positive | Regex too broad | Narrow pattern match |
| Guardrail triggered | Actual issue | Fix or whitelist |
Examples
Quick ESLint Check
npx eslint --plugin replit --rule 'replit/no-hardcoded-keys: error' src/
Resources
Next Steps
For architecture blueprints, see replit-architecture-variants.
Similar Claude Skills & Agent Workflows
git-commit
Generate well-formatted git commit messages following conventional commit standards
code-review
Comprehensive code review assistant that analyzes code quality, security, and best practices
dsql
Build with Aurora DSQL - manage schemas, execute queries, and handle migrations with DSQL-specific requirements.
backend-dev-guidelines
Comprehensive backend development guide for Langfuse's Next.js 14/tRPC/Express/TypeScript monorepo.
Material Component Dev
FlowGram 物料组件开发指南 - 用于在 form-materials 包中创建新的物料组件
Create Node
用于在 FlowGram demo-free-layout 中创建新的自定义节点,支持简单节点(自动表单)和复杂节点(自定义 UI)