configure-web-session

configure-web-session is a skill for Claude Code, Codex from laurigates/claude-plugins. It costs 39 tokens per session (3,245 once invoked), scanned D, original, MIT.

A setup guide for web development sessions that installs missing command-line tools when a remote session starts.

In plain words
What is it for?
Use it to onboard repositories for unattended web sessions and maintain an install script that is safe to run repeatedly.
Why use it?
It prevents automated tasks from failing because tools such as Helm, Terraform, Gitleaks, or Just are unavailable.

Skill for Claude CodeCodex

Part of the configure-plugin plugin — 48 skills shipped together

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/laurigates/claude-plugins/configure-web-session
Any agent
npx skills add laurigates/claude-plugins --skill configure-web-session
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

Made for: Claude Code, Codex.

Or install configure-plugin, the plugin that ships this one along with the rest of its 48 skills.

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 configure-web-session

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-web-session.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/configure-web-session)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/configure-web-session"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/configure-web-session.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,245 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. 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.00039 $0.03245
Opus 5 $0.00019 $0.01622
Sonnet 5 $0.00008 $0.00649
Haiku 4.5 $0.00004 $0.00325

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

Security

Grade D, and why

configure-web-session scanned grade D with 3 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 today.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

3. **Install to `~/.local/bin`** — writable without sudo regardless of whether the session runs as root. Ensure this directory is on the PATH that *agent subshells* inherit: add it to a `path-bootstrap.sh` SessionStart h

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- Settings hooks: !`find . -maxdepth 3 -name 'settings.json' -path '*/.claude/*'`

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf "$tmp_dir"
configure-plugin/skills/configure-web-session/SKILL.md · 246 lines

How it starts

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

/configure:web-session

Check and configure a SessionStart hook that installs missing tools when Claude Code runs on the web.

When to Use This Skill

Use this skill when... Use another approach when...
Pre-commit hooks fail in remote sessions (tool not found) Project has no infrastructure tooling (plain npm/pip is enough)
just recipes fail because just, helm, terraform, or similar are absent Tools are already available in the base image (check with check-tools)
Setting up a new repo for unattended Claude Code on the web tasks Only need to set env vars — use environment variables in the web UI instead
Auditing whether scripts/install_pkgs.sh is current and idempotent Debugging a specific hook failure — fix the hook itself first
Re-auditing already-onboarded repos for spec drift after the spec changed The repo was never onboarded — run the full setup instead
Onboarding a repo to Claude Code on the web for the first time Project uses only standard language runtimes (python, node, go, rust)

Context

  • Install script: !find . -name 'install_pkgs.sh' -path '*/scripts/*'
  • Settings hooks: !find . -maxdepth 3 -name 'settings.json' -path '*/.claude/*'
  • Pre-commit config: !find . -maxdepth 1 -name '.pre-commit-config.yaml'
  • Justfile: !find . -maxdepth 1 \( -name 'justfile' -o -name 'Justfile' \)
  • Has helm charts: !find . -maxdepth 3 -name 'Chart.yaml' -print -quit
  • Has terraform: !find . -maxdepth 3 \( -name '*.tf' -o -type d -name 'terraform' \) -print -quit

Parameters

Parse from $ARGUMENTS:

  • --check-only: Report current state without creating or modifying files
  • --fix: Apply all changes automatically without prompting
  • --tools <list>: Comma-separated list of tool names to install (overrides auto-detection)
    • Supported: helm, terraform, tflint, actionlint, helm-docs, gitleaks, just, pre-commit

Execution

Read the full file on GitHub · 246 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. today First seen · 246 lines · 39 tokens per session scan D ec9ce8ef8f84

Subscribe to this mod's changes

configure-web-session is a skill published in the GitHub repository laurigates/claude-plugins (57 stars, last pushed yesterday), licensed MIT. It adds 39 tokens to every session and 3,245 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it D with 3 findings (asks for root, reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories