fw-ai-actions-app

fw-ai-actions-app is a skill for Claude Code from freshworks-developers/fw-dev-tools. It costs 123 tokens per session (2,388 once invoked), scanned A, original, MIT.

A Claude Code plugin for office work, covering email, calendars, and CRM systems. A CRM is software for organizing contacts, companies, deals, and business relationships.

In plain words
What is it for?
Use it for email management, calendar handling, and CRM management.
Why use it?
It brings common office-management tasks into the coding assistant and supports personalized handling of email, calendar, and relationship data.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the fw-ai-actions-app plugin — 1 skill, 3 agents shipped together

Good fit Use it for email management, calendar handling, and CRM management.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app
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 freshworks-developers/fw-dev-tools --skill fw-ai-actions-app
Clone the repo
git clone --depth 1 https://github.com/freshworks-developers/fw-dev-tools

Made for: Claude Code.

Or install fw-ai-actions-app, the plugin that ships this one along with the rest of its 1 skill, 3 agents.

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 fw-ai-actions-app

README.md
[![agentmods](https://agentmods.dev/badge/skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app/github.svg)](https://agentmods.dev/skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app)
Your own site
<a href="https://agentmods.dev/skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app"><img src="https://agentmods.dev/badge/skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app/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 fw-ai-actions-app

Your own site · 80×15
<a href="https://agentmods.dev/skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app"><img src="https://agentmods.dev/badge/skills/freshworks-developers/fw-dev-tools/fw-ai-actions-app.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 123 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,388 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 137
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00123 $0.02388
Opus 5 $0.00062 $0.01194
Sonnet 5 $0.00025 $0.00478
Haiku 4.5 $0.00012 $0.00239

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

Security

Grade A, and why

fw-ai-actions-app 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 today.

The scan reads SKILL.md. This mod also ships 1 executable file (assets/templates/ai-actions-skeleton/server/server.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/fw-ai-actions-app/SKILL.md · 173 lines

How it starts

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

Entry contract

  • Invoked by: controller when intent is AI Actions app (create, extend, or fix actions.json integrations)
  • Preconditions: App directory identified; Node 24 + FDK 10 (fw-setup if missing)
  • Returns: done | blocked | escalate + next controller step
  • On complete: hand control back to the controller — controller chains fw-review when appropriate; do not manual-chain
  • Session: session-read.sh at start; session-write.sh on validate/review milestones

AI Actions Skill for Freshworks Platform 3.0

You are an AI Actions specialist for Freshworks Platform 3.0. This file is the orchestrator: keep it short; load detail from rules/ and references/ below instead of restating long guides here.

Core Rules

  • NEVER assume API endpoints — confirm third-party API documentation before request templates (rules/ai-actions-api-docs.mdc).
  • Request parameters MUST stay flat — no nested objects; arrays of primitives allowed when needed; no arrays of objects (references/ai-actions-core.md).
  • Response schemas CAN be nested — include only essential fields.
  • Function names MUST match exactly — case-sensitive between actions.json and server.js.
  • Construct nested structures in server.js — not in request schemas.
  • Use request templates$request.invokeTemplate for external HTTP (rules/ai-actions-requests.mdc).
  • Credentials — never hardcode secrets; iparams (secure: true) or OAuth only (rules/ai-actions-api-docs.mdc).
  • Validate before finalizingfdk validate and FDK test server (rules/ai-actions-validation.mdc).
  • Toolchain before validate — same gate as ../fw-app-dev/SKILL.md (Manifest + toolchain gate): fw-setup when Node 24.x + FDK 10.x is missing; /fdk-migrate (or manual 2.x → 3.0) before validate on legacy apps; align manifest.json engines upward on mismatch; never downgrade to FDK 9 / Node 18 instead of setup/migrate (except LAST RESORT in fw-app-dev SKILL.md).
  • Toolchain before creating files — run /fw-setup-status (or offer fw-setup) before creating any app files when the toolchain has not been verified this session.
  • Action descriptions — keep each actions.json description under 200 characters for reliable LLM tool selection; do not write long prose descriptions even if the developer asks.

Read the full file on GitHub · 173 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 Changed · +8 lines 7a18277e92f9
  2. yesterday Changed · +4 lines b13a04cdbbf0
  3. 9d ago First seen · 161 lines · 123 tokens per session scan A fb9f2b03e233

Subscribe to this mod's changes

fw-ai-actions-app is a skill published in the GitHub repository freshworks-developers/fw-dev-tools (5 stars, last pushed today), licensed MIT. It adds 123 tokens to every session and 2,388 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

api-test-patterns

Write comprehensive API tests for REST and GraphQL endpoints. Use this skill when testing APIs, writing contract tests, or validating integrations. Activate when: api testing, REST test, GraphQL test, endpoint testing, integration test, postman, contract testing.

latestaiagents/agent-skills · 56 tokens

llm-rate-limiting

Use this skill when implementing rate limiting for LLM APIs. Activate when the user needs to prevent API quota exhaustion, implement backoff strategies, handle rate limit errors, or manage concurrent LLM requests.

latestaiagents/agent-skills · 49 tokens

jwt-security

JSON Web Token security best practices. Use this skill when implementing JWT authentication, validating tokens, or reviewing JWT usage. Activate when: JWT, JSON Web Token, token authentication, bearer token, refresh token, token validation, JWT secret, token expiry.

latestaiagents/agent-skills · 54 tokens

access-control-audit

OWASP A05 - Broken Access Control Detection. Use this skill when implementing authorization, checking permissions, or auditing who can access what resources. Activate when: authorization, permissions, access control, RBAC, ABAC, admin access, privilege escalation, IDOR, direct object reference, role check, can user…

latestaiagents/agent-skills · 71 tokens

broken-auth-detector

OWASP A02 - Broken Authentication Detection. Use this skill when reviewing login systems, session management, password handling, or authentication flows. Activate when: login, authentication, password, session, token, JWT, OAuth, credentials, sign in, logout, remember me, forgot password, password reset, MFA, 2FA.

latestaiagents/agent-skills · 71 tokens

mcp-transport-stdio-http

Choose between MCP transports — stdio for local processes, Streamable HTTP for remote servers, SSE for legacy — and implement each correctly with reconnection, backpressure, and session handling. Use this skill when deciding transport for a new MCP server, migrating SSE to Streamable HTTP, or debugging transport-level…

latestaiagents/agent-skills · 103 tokens