javascript-skill

javascript-skill is a skill for Claude Code, Codex from zeenie-ai/OpenCompany. It costs 28 tokens per session (1,564 once invoked), scanned A, original, MIT.

A tool for running JavaScript code to perform calculations, process data, automate tasks, and manipulate JSON.

In plain words
What is it for?
Use it for ES6+ code, JSON processing, date and math operations, array and object transformations, and workflow data handling.
Why use it?
It removes the need to handle repetitive calculations or data transformations manually.

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/zeenie-ai/opencompany/javascript-skill
Any agent
npx skills add zeenie-ai/OpenCompany --skill javascript-skill
Clone the repo
git clone --depth 1 https://github.com/zeenie-ai/OpenCompany

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 javascript-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/zeenie-ai/opencompany/javascript-skill.svg)](https://agentmods.dev/skills/zeenie-ai/opencompany/javascript-skill)
Your own site
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/javascript-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/javascript-skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,564 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00028 $0.01564
Opus 5 $0.00014 $0.00782
Sonnet 5 $0.00006 $0.00313
Haiku 4.5 $0.00003 $0.00156

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

Security

Grade A, and why

javascript-skill 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 4d 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.

server/skills/coding_agent/javascript-skill/SKILL.md · 196 lines

How it starts

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

JavaScript Code Execution Tool

Execute JavaScript code for calculations, data processing, and JSON manipulation.

How It Works

This skill provides instructions for the JavaScript Executor tool node. Connect the JavaScript Executor node to Zeenie's input-tools handle to enable JavaScript code execution.

javascript_code Tool

Execute JavaScript code and return results.

Schema Fields

Field Type Required Description
code string Yes JavaScript code to execute

Available Features

Feature Description
ES6+ syntax Arrow functions, destructuring, spread operator
JSON JSON.parse() and JSON.stringify()
Math Mathematical operations
Date Date and time manipulation
Array methods map, filter, reduce, sort, etc.
Object methods keys, values, entries, assign
String methods All standard string methods

Built-in Variables

Variable Description
input_data Data from connected workflow nodes (object)
output Set this to return a result

Output Methods

  1. Set output variable: Returns structured data to the workflow
  2. Use console.log(): Captured as console output

Examples

Basic calculation:

{
  "code": "const result = 25 * 4 + 10;\nconsole.log(`Result: ${result}`);\noutput = result;"
}

Array processing:

{
  "code": "const numbers = input_data.numbers || [1, 2, 3, 4, 5];\nconst total = numbers.reduce((a, b) => a + b, 0);\nconst average = total / numbers.length;\nconsole.log(`Total: ${total}, Average: ${average}`);\noutput = { total, average };"
}

Filter array:

{
  "code": "const numbers = input_data.numbers || [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\nconst evens = numbers.filter(n => n % 2 === 0);\nconsole.log(`Even numbers: ${evens}`);\noutput = evens;"
}

Transform data:

{
  "code": "const users = input_data.users || [{name: 'John', age: 30}, {name: 'Jane', age: 25}];\nconst names = users.map(u => u.name);\nconsole.log(`Names: ${names.join(', ')}`);\noutput = names;"
}

Read the full file on GitHub · 196 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. 4d ago First seen · 196 lines · 28 tokens per session scan A f9d1d9bf9bd0

Subscribe to this mod's changes

javascript-skill is a skill published in the GitHub repository zeenie-ai/OpenCompany (848 stars, last pushed yesterday), licensed MIT. It adds 28 tokens to every session and 1,564 once invoked, about $0.0001 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

api-debugging

Systematic approach to debugging REST APIs, HTTP errors, authentication issues, and network problems. Use when the user has API errors, status code issues, timeout problems, or needs help troubleshooting HTTP requests.

ownpilot/OwnPilot · 44 tokens

git-workflow

Guides you through Git workflows — branching strategies, commit conventions, merge conflict resolution, and release management. Use when working with Git repositories or when the user asks about version control best practices.

ownpilot/OwnPilot · 42 tokens

writing-assistant

Helps improve writing quality — emails, documents, blog posts, and technical content. Provides editing, tone adjustment, structure suggestions, and grammar fixes. Use when the user asks to write, edit, review, or improve any text content.

ownpilot/OwnPilot · 52 tokens

code-review

Reviews code for quality issues, security vulnerabilities, performance problems, and best practices. Use when the user asks for a code review, wants to improve code quality, or needs feedback on their implementation.

ownpilot/OwnPilot · 42 tokens

document-assistant

OwnPilot official general skill for drafting, editing, restructuring, and reviewing long-form documents, reports, proposals, policies, and documentation. Use when the user asks to create or improve a document.

ownpilot/OwnPilot · 43 tokens

research-synthesizer

OwnPilot official general skill for turning mixed research material into concise, sourced briefs, comparisons, decisions, and next steps. Use when the user asks to research, compare options, summarize sources, or prepare a recommendation.

ownpilot/OwnPilot · 49 tokens