client-onboarding

client-onboarding is a skill for Claude Code from strikersam/autonomous-ai-agency. It costs 203 tokens per session (1,823 once invoked), scanned A, original, MIT.

A client-onboarding workflow for adding a company to an Agentic OS platform. It records the company, scans supplied websites and code repositories, provisions specialist agents, and activates the agency runtime.

In plain words
What is it for?
Use it to create company records, inspect websites and repositories, provision specialist agents, and start the company’s runtime.
Why use it?
It turns several setup tasks into one defined process and shows which platform building blocks already exist versus which are still planned. Website and repository scans are optional.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

Good fit Use it to create company records, inspect websites and repositories, provision specialist agents, and start the company’s runtime.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/strikersam/autonomous-ai-agency/client-onboarding
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 strikersam/autonomous-ai-agency --skill client-onboarding
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

Made for: Claude Code.

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 client-onboarding

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/client-onboarding/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/client-onboarding)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/client-onboarding"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/client-onboarding/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 client-onboarding

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/client-onboarding"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/client-onboarding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 203 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,823 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 Data Exfiltration · line 72
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00203 $0.01823
Opus 5 $0.00102 $0.00911
Sonnet 5 $0.00041 $0.00365
Haiku 4.5 $0.00020 $0.00182

Measured 7d ago against content hash 15bc6b52351c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

client-onboarding 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 7d 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 "$API_BASE/api/company" \
.claude/skills/client-onboarding/SKILL.md · 144 lines

How it starts

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

Skill: client-onboarding

Fill these in

Fill in What it is Example
COMPANY_NAME Display name for the new client company (required) Bright Studio
DOMAIN Primary domain for the company (required — CompanyCreateRequest.domain, models/company_graph.py:1966) brightstudio.com
WEBSITE_URLS Optional: public site(s) to scan for stack/systems detection ["https://brightstudio.com"]
REPO_URLS Optional: repos to scan for code-level detection ["https://github.com/brightstudio/app"]

Ownership is derived server-side from the caller's bearer token (_resolve_user_id(user) in backend/company_api.py) — there is no owner_id request field to fill in; do not invent one.

COMPANY_NAME and DOMAIN are required to create the company record. WEBSITE_URLS/REPO_URLS are optional — onboarding can run with website_urls empty and specialists can still be provisioned manually afterward.

What this maps to (real code, not a generic scaffold)

Giveaway-skill concept This repo's actual implementation
"Scaffold the memory layer / vault" CompanyGraphStore (services/company_graph_store.py:52) persists Company, CompanyGraph, Specialist, Workflow, KnowledgeItem, Connector, ApprovalPolicy (Mongo primary / SQLite fallback). There is no notes vault — knowledge lives in KnowledgeItem records (create_knowledge_item/search_knowledge, company_graph_store.py:337-378). Agent-runtime memory (separate concern) lives in agent/memory.py and agent/persistent_memory.py.
"Wire in the Google suite (Gmail/Calendar/Drive)" Does not exist yet. packages/auth/oauth.py only implements Google OAuth2 login (GOOGLE_CLIENT_ID/GOOGLE_CLIENT_SECRET, /api/auth/google/login) — no Gmail, Calendar, or Drive API integration. Do not tell a client this is available; if they need it, file it as a new Connector type (see models/company_graph.py) rather than faking it.
"Drop in requested skill packs (research, content, ops, data)" SpecialistService.provision_specialists_for_company (services/specialist.py) auto-provisions specialists from a ~33-family catalog (engineering, qa, security, devops, data, ml, frontend, backend, marketing, research, support, trading, portfolio, agile, ...) based on systems detected during scanning — not a manual pack install.
"Build the command-center dashboard" Already built: frontend/src/v5/screens/DashboardScreen.jsx (health/stats/activity/providers/tasks), AgentsScreen.jsx, CompanyScreen.jsx, SkillsScreen.jsx. Nothing to scaffold — the new company just needs to be onboarded into it.
"Brand it and write a README" Company display name + branding lives on the Company record itself (models/company_graph.py); no separate README artifact is generated per client.

Read the full file on GitHub · 144 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. 7d ago First seen · 144 lines · 203 tokens per session scan A 15bc6b52351c

Subscribe to this mod's changes

client-onboarding is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed today), licensed MIT. It adds 203 tokens to every session and 1,823 once invoked, about $0.0010 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-09-03.