deploy-to-temps

deploy-to-temps is a skill for Claude Code, Codex from gotempsh/temps. It costs 141 tokens per session (1,444 once invoked), scanned A, original, Apache-2.0.

A deployment guide for running applications on the Temps platform. It recognizes several common frameworks and languages, builds the application, and can generate a Dockerfile, a recipe for packaging software into a container.

In plain words
What is it for?
Use it to deploy Next.js, Vite, React, Node.js, Python, Go, Rust, Java, or C# applications, including deployments from a chosen repository branch or local command.
Why use it?
It removes much of the manual work of identifying how an application should be built and packaged. It supports deployment through a connected Git repository or the command line.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/gotempsh/temps/deploy-to-temps
Any agent
npx skills add gotempsh/temps --skill deploy-to-temps
Clone the repo
git clone --depth 1 https://github.com/gotempsh/temps

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 deploy-to-temps

README.md
[![agentmods](https://agentmods.dev/badge/skills/gotempsh/temps/deploy-to-temps.svg)](https://agentmods.dev/skills/gotempsh/temps/deploy-to-temps)
Your own site
<a href="https://agentmods.dev/skills/gotempsh/temps/deploy-to-temps"><img src="https://agentmods.dev/badge/skills/gotempsh/temps/deploy-to-temps.svg" alt="Measured on agentmods" height="20"></a>
Per session 141 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,444 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00141 $0.01444
Opus 5 $0.00071 $0.00722
Sonnet 5 $0.00028 $0.00289
Haiku 4.5 $0.00014 $0.00144

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

Security

Grade A, and why

deploy-to-temps scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://your-temps.com/api/projects/123/deploy \
skills/deploy-to-temps/SKILL.md · 255 lines

How it starts

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

Deploy to Temps

Deploy applications to Temps with automatic framework detection and optimized builds.

Supported Frameworks

Framework Detection Build Command
Next.js next.config.* next build
Vite vite.config.* vite build
Create React App react-scripts in package.json react-scripts build
Remix remix.config.* remix build
Express/Node.js express in dependencies npm run build (if exists)
NestJS @nestjs/core in dependencies nest build
Python/Flask requirements.txt + app.py -
Python/Django manage.py python manage.py collectstatic
Go go.mod go build
Rust Cargo.toml cargo build --release

Quick Deploy

Via Git Integration

  1. Connect your Git provider in Temps dashboard
  2. Select repository and branch
  3. Temps auto-detects framework and deploys

Via CLI

# Install Temps CLI
npm install -g @temps-sdk/cli

# Login
temps login

# Deploy current directory
temps deploy

# Deploy with specific settings
temps deploy --project my-app --branch main

Dockerfile Generation

Temps auto-generates optimized Dockerfiles. For custom needs:

Next.js (Standalone)

FROM node:20-alpine AS base

FROM base AS deps
WORKDIR /app
COPY package*.json ./
RUN npm ci

FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN npm run build

FROM base AS runner
WORKDIR /app
ENV NODE_ENV=production
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs

COPY --from=builder /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static

USER nextjs
EXPOSE 3000
ENV PORT=3000
CMD ["node", "server.js"]

Node.js (Express/Fastify)

FROM node:20-alpine
WORKDIR /app

COPY package*.json ./
RUN npm ci --only=production

COPY . .

ENV NODE_ENV=production
USER node
EXPOSE 3000
CMD ["node", "dist/index.js"]

Read the full file on GitHub · 255 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. 5d ago First seen · 255 lines · 141 tokens per session scan A a120b4aa244e

Subscribe to this mod's changes

deploy-to-temps is a skill published in the GitHub repository gotempsh/temps (712 stars, last pushed yesterday), licensed Apache-2.0. It adds 141 tokens to every session and 1,444 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

scanning-docker-images-with-trivy

Trivy is a comprehensive open-source vulnerability scanner by Aqua Security that detects vulnerabilities in OS packages, language-specific dependencies, misconfigurations, secrets, and license violati.

xalgorix/xalgorix · 42 tokens

performing-container-security-scanning-with-trivy

Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.

xalgorix/xalgorix · 48 tokens

devops-deployment

Use when setting up CI/CD pipelines, containerizing applications, deploying to Kubernetes, or writing infrastructure as code. DevOps & Deployment covers GitHub Actions, Docker, Helm, and Terraform patterns.

yonatangross/orchestkit · 44 tokens

add-ci-area

Add a new project area to CI workflows.

fpindej/netrock · 8 tokens

ci-status

Check the CI pipeline status for the current branch after pushing changes. Reports pass/fail with failure details. Use this after every push to confirm your changes are truly done — CI must be green. TRIGGER when: after git push, after committing changes, when asked to check CI, or when verifying that work is complete.

mifunedev/openharness · 69 tokens

deployment

Use when taking an app from source to live: choosing the deploy target from requirements (Hetzner+Coolify vs Vercel vs a third), then wiring container → CI → registry → host with build secrets, healthchecks and rollback. NOT one platform's mechanics (that is coolify, vercel, railway, render), NOT the Dockerfile alone…

ericrisco/rsc-harness · 86 tokens