SKILLEMALL.ai

BC selzy

Create and send email marketing campaigns via Selzy API. Manage contacts, segments, templates. Schedule campaigns, run A/B tests, and analyze performance (opens, clicks, bounces). Turn natural language requests into full email campaigns. **v2.1 — Fixed critical bug:** Campaigns now require explicit list_id verification. Without list_id, Selzy sends to 1 contact only. Always call getLists first.

LeoYeAI/openclaw-master-skills Agent Skills author: LeoYeAI MIT 4 files body ≈ 4 907 tokens Open the sourcegithub.com analyzed 2 d ago

Create and send email marketing campaigns via Selzy API.

As a process C 53/100 · Has gaps — weak spots: when it triggers, inputs and preconditions, consistency

IntegrationMarketingtype and topics are labelled automatically from the skill text
JSON
Technical rating
B
81/100
safety, quality, tests
Safety 60%
86
Quality 40%
73
Run on models
none yet
Process rating
C
53/100
Has gaps
When it triggers w 12
20
Inputs and preconditions w 11
30
Running it twice w 4
30
the three weakest of ten parameters · all ten

How to improve

  1. Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 14

✓ No critical or high findings

Medium and low: 14
  • low Exfiltration exfil-secret-in-url SKILL.md:139
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/{METHOD}?format=json&api_key=…&{params}"
    vendor-hostquoted
  • low Exfiltration net-credential-use SKILL.md:139
    Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
    curl "https://api.selzy.com/en/api/{METHOD}?format=json&api_key=…&{params}"
    vendor-host
  • low Exfiltration exfil-secret-in-url SKILL.md:155
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/getLists?format=json&api_key=…"
    vendor-hostquoted
  • low Exfiltration net-credential-use SKILL.md:155
    Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
    curl "https://api.selzy.com/en/api/getLists?format=json&api_key=…"
    vendor-host
  • low Exfiltration exfil-secret-in-url SKILL.md:172
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/createList?format=json&api_key=…&title=…"
    vendor-hostquoted
  • low Exfiltration net-credential-use SKILL.md:172
    Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
    curl "https://api.selzy.com/en/api/createList?format=json&api_key=…&title=…"
    vendor-host
  • low Exfiltration exfil-secret-in-url SKILL.md:182
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/getList?format=json&api_key=…&list_id=12345"
    vendor-hostquoted
  • low Exfiltration net-credential-use SKILL.md:182
    Credential used in a network call (verify the destination is the intended service) (the skill's own vendor host)
    curl "https://api.selzy.com/en/api/getList?format=json&api_key=…&list_id=12345"
    vendor-host
  • low Exfiltration exfil-secret-in-url SKILL.md:194
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (security demo / example; the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/importContacts?format=json&api_key=…&field_names[]=email&field_names[]=Name&data[][]=…&data[][]=John&data[][]=…&data[][]=J
    demovendor-hostquoted
  • low Exfiltration net-credential-use SKILL.md:194
    Credential used in a network call (verify the destination is the intended service) (security demo / example; the skill's own vendor host)
    curl "https://api.selzy.com/en/api/importContacts?format=json&api_key=…&field_names[]=email&field_names[]=Name&data[][]=…&data[][]=John&data[][]=…&data[][]=J
    demovendor-host
  • low Exfiltration exfil-secret-in-url TEST_CHECKLIST.md:12
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (test fixture / example file; the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/getLists?format=json&api_key=…"
    fixturevendor-hostquoted
  • low Exfiltration net-credential-use TEST_CHECKLIST.md:12
    Credential used in a network call (verify the destination is the intended service) (test fixture / example file; the skill's own vendor host)
    curl "https://api.selzy.com/en/api/getLists?format=json&api_key=…"
    fixturevendor-host
  • low Exfiltration exfil-secret-in-url TEST_CHECKLIST.md:50
    Credential passed in a URL query string (normal for some APIs — verify the host is the intended service) (security demo / example; test fixture / example file; the skill's own vendor host; quoted — discussed, not commanded)
    curl "https://api.selzy.com/en/api/createEmailMessage?format=json&api_key=$KEY&sender_name=Test&sender_email=…&subject=Test&body=<h1>Test</h1>&list_id=12345"
    demofixturevendor-hostquoted
  • low Exfiltration net-credential-use TEST_CHECKLIST.md:50
    Credential used in a network call (verify the destination is the intended service) (security demo / example; test fixture / example file; the skill's own vendor host)
    curl "https://api.selzy.com/en/api/createEmailMessage?format=json&api_key=$KEY&sender_name=Test&sender_email=…&subject=Test&body=<h1>Test</h1>&list_id=12345"
    demofixturevendor-host

Files scanned: 4. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

  • warning description-no-when description does not say WHEN to use the skill (no "use when")

Process rating: all ten parameters 53/100

  • 20When it triggers. No condition that starts the skill
  • 30Inputs and preconditions. Does not say what the process needs to start
  • 30Running it twice. 66 mutating operations with no state check
  • 40Consistency. Frontmatter name (selzy) differs from the folder (selzy-api-skill)
  • 50Failures and branches. 0 branches, has a failure section
  • 60Tools and files. Uses tools (web) that frontmatter does not declare
  • 60Result and completion. Output format stated, no completion criterion
  • 70Execution cost. Instruction body is 4907 tokens
  • 85Steps. 72 steps, 3 vague phrases
  • 100Progress reporting. Reports progress
  • medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
  • low 14 top-level sections: this looks like several domains in one skill

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +5Description has no quoted example phrases that should trigger the skill
  • +4Description does not say when NOT to use the skill (false activations)
  • -223 emoji in the instructions: noise for the model
  • +1No license
  • +2Single-language instructions
  • +3Description length 397: enough signal without eating the budget
  • +4Structure: 48 headings
  • +3Step-by-step instructions: 72 items
  • +3Output format is stated explicitly
  • +4Has examples (34 code blocks)

Quality base 70; lint remarks subtract, signals add up to 100. Result: 73.