sequence-load

A workflow for finding contacts that match targeting criteria and adding them to an Apollo outreach sequence. Apollo is a sales platform for finding contacts, managing prospect records, and sending planned outreach.

In plain words
What is it for?
For loading targeted technology-company contacts into named outreach sequences, using criteria such as industry, location, company size, and job seniority.
Why use it?
It combines search, data enrichment, duplicate checking, contact creation, and sequence enrollment in one process.

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/msapps-mobile/claude-plugins/sequence-load
Any agent
npx skills add MSApps-Mobile/claude-plugins --skill sequence-load
Clone the repo
git clone --depth 1 https://github.com/MSApps-Mobile/claude-plugins

Made for: Claude Code, Codex.

Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,358 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 88% copy Near-identical to another mod 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.00042 $0.01358
Opus 5 $0.00021 $0.00679
Sonnet 5 $0.00008 $0.00272
Haiku 4.5 $0.00004 $0.00136

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

Security

Grade A, and why

sequence-load 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 2d 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.

Origin

This is a copy

88% identical to sequence-load — 45 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/apollo/skills/sequence-load/SKILL.md · 134 lines

How it starts

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

Sequence Load

Find, enrich, and load contacts into an outreach sequence — end to end. The user provides targeting criteria and a sequence name via "$ARGUMENTS".

About MSApps (Context)

MSApps targets tech companies and enterprises globally for mobile/web development, outsourcing, and team augmentation. Default location filter is United States, Europe, and Israel. Default seniority targets are CEO, CTO, VP Engineering, VP R&D, VP IT, Head of Digital.

See the Prospect skill for the full list of 15 MSApps target segments (automotive, fintech, healthtech, cyber, retail, proptech, edtech, agritech, logistics, martech, hrtech, cleantech, gaming, startups, enterprises).

Examples

  • /apollo:sequence-load add 20 CTOs at US cybersecurity companies to "Cyber Outreach Q1"
  • /apollo:sequence-load segment: fintech, Europe → Cold Outreach
  • /apollo:sequence-load list sequences (shows all available sequences)
  • /apollo:sequence-load CEOs at MedTech startups, 30-300 employees → Health Outreach (searches US, Europe & Israel)
  • /apollo:sequence-load reload 15 more leads into "Enterprise Pipeline"

Step 1 — Parse Input

From "$ARGUMENTS", extract:

Targeting criteria:

  • Job titles → person_titles (default: CEO, CTO, VP Engineering, VP R&D, VP IT, Head of Digital, CIO)
  • Seniority levels → person_seniorities (default: c_suite, vp, director)
  • Industry keywords → q_organization_keyword_tags
  • Company size → organization_num_employees_ranges
  • Locations → person_locations or organization_locations (default: United States, Europe, Israel — narrow if user specifies)

Sequence info:

  • Sequence name (text after "to", "into", or "→")
  • Volume — how many contacts to add (default: 10 if not specified)

If the user names an MSApps segment (e.g., "segment: fintech"), map it to the appropriate filters.

If the user just says "list sequences", skip to Step 2 and show all available sequences.

Step 2 — Find the Sequence

Use mcp__claude_ai_Apollo_MCP__apollo_emailer_campaigns_search to find the target sequence:

  • Set q_name to the sequence name from input

Read the full file on GitHub · 134 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. 2d ago First seen · 134 lines · 42 tokens per session scan A c0c265cad1b6

Subscribe to this mod's changes

sequence-load is a skill published in the GitHub repository MSApps-Mobile/claude-plugins (9 stars, last pushed 6d ago), licensed MIT. It adds 42 tokens to every session and 1,358 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to sequence-load, differing in 45 lines, and is treated as a copy.

Related

Other skills, from other repositories

change

Track and inspect graph changes, diffs, temporal updates, and the impact of new data on Semantica knowledge graphs.

semantica-agi/semantica · 27 tokens

review

5-pass structured code review — correctness, security, performance, readability, consistency.

SethGammon/Citadel · 17 tokens

scaffold

Project-aware file generation. Reads existing codebase conventions (naming, structure, imports, exports, test patterns) then generates new files that match exactly. Wires generated files into the project's registration points.

SethGammon/Citadel · 44 tokens

design

Generates and maintains a design manifest for visual consistency. In existing projects, reads current styles and documents the design language. In new projects, asks a few questions and generates a starter manifest. The post-edit hook reads the manifest and flags deviations.

SethGammon/Citadel · 51 tokens

marshal

Meta-orchestrator that takes any direction — broad, specific, or vague — and autonomously chains skills and context into actionable work. Gathers context from codebase, docs, and memory. Only asks the user when it genuinely cannot proceed. Single-session orchestrator.

SethGammon/Citadel · 56 tokens

organize

Repository structure only: directory layout, file placement, naming conventions, and where-does-this-belong decisions. Detects the project's convention, audits files against it, and executes move plans with import-path updates. Never changes code inside files beyond the import updates a move forces; in-file…

SethGammon/Citadel · 66 tokens