render

render is a skill for Claude Code, Codex from neverinfamous/memory-journal-mcp. It costs 89 tokens per session (616 once invoked), scanned A, original, MIT.

Deployment guidance for applications hosted on Render. Render is a cloud platform for running web services, background workers, scheduled jobs, and managed PostgreSQL or Redis instances.

In plain words
What is it for?
Use it when configuring Render Blueprints, web services, background workers, scheduled jobs, or Render-managed databases and Redis.
Why use it?
It helps keep infrastructure reproducible and deployments safer by defining services in render.yaml, separating background work, and checking application health before replacing a live version.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when configuring Render Blueprints, web services, background workers, scheduled jobs, or Render-managed databases and Redis.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neverinfamous/memory-journal-mcp/render
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 neverinfamous/memory-journal-mcp --skill render
Clone the repo
git clone --depth 1 https://github.com/neverinfamous/memory-journal-mcp

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 render

README.md
[![agentmods](https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/render/github.svg)](https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/render)
Your own site
<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/render"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/render/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 render

Your own site · 80×15
<a href="https://agentmods.dev/skills/neverinfamous/memory-journal-mcp/render"><img src="https://agentmods.dev/badge/skills/neverinfamous/memory-journal-mcp/render.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 616 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.00089 $0.00616
Opus 5 $0.00044 $0.00308
Sonnet 5 $0.00018 $0.00123
Haiku 4.5 $0.00009 $0.00062

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

Security

Grade A, and why

render 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 10d 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.

skills/render/SKILL.md · 36 lines

How it starts

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

Render Deployment Best Practices

Guidelines for managing infrastructure and deploying applications on the Render platform.

1. Infrastructure as Code (render.yaml)

  • Blueprints: Always use Render Blueprints (render.yaml) to define your infrastructure. This enables GitOps, ensures reproducibility, and prevents configuration drift in the dashboard.
  • Sync Environments: Define multiple environments (e.g., staging, production) using environment-specific branches and render.yaml configurations.

2. Web Services & Background Workers

  • Health Checks: Always define a healthCheckPath in render.yaml. Render uses this to ensure zero-downtime deployments. If the health check fails, the new deploy is aborted and the old version remains live.
  • Start Commands: Ensure your start command starts a production-ready web server (e.g., gunicorn, pm2, or Node.js server.js). Do not use development servers (e.g., npm run dev, flask run) in production.
  • Background Workers: Separate long-running tasks into Background Workers. Background Workers do not have exposed HTTP ports and won't be killed for failing to bind to a port (unlike Web Services).

3. Databases (PostgreSQL & Redis)

  • Internal Connections: Always connect Web Services to Databases using the Internal Database URL. This traffic stays within Render's private network, which is faster and vastly more secure.
  • External Access: Restrict external database access. If you must connect externally (e.g., for local debugging), use the Access Control list to whitelist specific IP addresses rather than allowing 0.0.0.0/0.
  • Migrations: Execute database migrations using the preDeployCommand. This runs before the new code goes live, ensuring the schema is ready for the new application version.

4. Environment Variables & Secrets

  • Secret Files: For files like .env, use Render's Secret Files feature. Reference them in render.yaml.
  • Env Var Groups: Group common environment variables (like AWS credentials or API keys used across multiple services) into Environment Groups and link them to services in your Blueprint.

Read the full file on GitHub · 36 lines

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. 10d ago First seen · 36 lines · 89 tokens per session scan A 3ec5f9b244df

Subscribe to this mod's changes

render is a skill published in the GitHub repository neverinfamous/memory-journal-mcp (20 stars, last pushed 1mo ago), licensed MIT. It adds 89 tokens to every session and 616 once invoked, about $0.0004 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-08-30.

Related

Other skills, from other repositories

maintain-splash-pages

The Lossless Group's pattern for repo-level splash pages — small Astro sites at /splash/ that ship to GitHub Pages on push to main, render the repo's changelog/ + context-v/ alongside curated marketing copy, and stay isolated from any package the repo also publishes. Use proactively whenever scaffolding a noteworthy…

lossless-group/lossless-agent-skills · 222 tokens

skill-creator

Generate a new skill from a plain-language description — decides invocation control, arguments, and context cost, then scaffolds, validates, and tests it.

conorbronsdon/agent-context-os · 33 tokens

tech-writing

Write professional technical documents — requirements/PRD, tech spec/design doc, low-level design, decision records, and trade-off analysis — at a formality tier matched to the task. Grounds every claim in real code or a cited source, marks what it could not verify, and refuses to pad. Use when asked to write/update a…

nguyenthienthanh/aura-frog · 88 tokens

context-end

Close a workspace session by reviewing a proposed summary, recording approved outcomes, updating state and decisions, and checking repository safety. Use only when the user explicitly asks to end, close, or hand off the current session.

conorbronsdon/agent-context-os · 46 tokens

context-setup

Build, import, or refresh this workspace's identity, project, reusable-workflow, and weekly-state files through a guided review. Use only when the user explicitly asks to initialize or redo workspace context.

conorbronsdon/agent-context-os · 44 tokens

context-start

Load this workspace's current state, recent decisions, blockers, priorities, and session continuity, then give a concise briefing. Use only when the user explicitly asks to begin or resume a workspace session.

conorbronsdon/agent-context-os · 42 tokens