Agent Plugins Marketplace
← All plugins

adam

v1.2.0

Adam's general-purpose skills, safe anywhere including cloud sessions: writing voice, GitHub Actions debugging and hardening, ADRs, resolving task ambiguity.

Claude CodeAgent Plugins9 Skills

By Adam Daniel0 GitHub starsUpdated 1 hour ago

Directory evidence

Runtimes
Claude Code and Agent Plugins
Parsed components
9 skill or MCP entries
Source updated
Sep 24, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →

Install adam for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install adam@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/Adam-S-Daniel/agentskills

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/adam/.

Plugin files

plugins/adam/
├── .claude-plugin/plugin.json
├── plugin.json
├── skills/adam-writing-style/SKILL.md
├── skills/debug-github-workflows/SKILL.md
├── skills/disarm-inherited-reach/SKILL.md
├── skills/finding-unknowns/SKILL.md
├── skills/github-actions-repo-settings/SKILL.md
├── skills/review-bash-ci-reliability/SKILL.md
├── skills/skills-doctor/SKILL.md
├── skills/workflow-path-audit/SKILL.md
└── skills/writing-adrs/SKILL.md

Included Skills9

adam-writing-styleskills/adam-writing-style/SKILL.md

Write in Adam Daniel's voice — professional but warm, direct, em-dash-friendly, free of corporate buzzwords. Trigger whenever the user asks Claude to write something that will go out under Adam's name or be lifted into his materials: emails, replies, bios, proposal blurbs, cover letters, LinkedIn posts, performance self-appraisals, comments on other people's drafts, "ghostwrite this for me", or any "in my voice / sound like me" request. Also trigger when polishing or rewriting Adam's own draft. Do NOT trigger for generic third-party content the user is helping someone else produce (e.g. "draft a press release for the company") unless they ask for Adam's voice specifically.

debug-github-workflowsskills/debug-github-workflows/SKILL.md

Debugging GitHub Actions workflow failures. Use when workflows are failing, showing unexpected results, or when you need to read workflow run logs and diagnose CI/CD issues.

disarm-inherited-reachskills/disarm-inherited-reach/SKILL.md

Sever a scratch tree's inherited push path to the real repository the moment the tree exists, before anything runs in it. Fires on the concrete act, not on how risky the work feels: copying a repo (cp -a, cp -r, rsync, untarring, a /tmp scratch tree), git clone, git worktree add, or standing up a throwaway checkout to run something in; and on any negative control - proving the verifier can fail, a mutation test, a deliberately broken tree, editing a dry-run flag or confirmation prompt or required check to watch it fire, or running an untested destructive path such as a reaper, a sweeper, a delete or force-push script, or a data migration. cp -a copies .git/config, so the copy inherits origin pointing at production. A worktree is not a copy and must be handled differently, because removing its remote removes the parent's. Use this even when you believe you are only verifying.

finding-unknownsskills/finding-unknowns/SKILL.md

Surface and resolve the ambiguities in a task before, during, and after implementation — the blind-spot pass, the self-interview, reference-driven specs, implementation notes, and a post-hoc explainer or quiz. Use at the start of any non-trivial build, when working in an unfamiliar codebase or a new domain, when acceptance criteria are subjective ("make it feel polished", "clean this up"), when a plan keeps needing rework mid-implementation, or when the user says "help me find my unknowns", "what am I missing", "poke holes in this", "what haven't I thought about". Also use after a change lands, to produce the explainer or comprehension check that proves the work is understood.

github-actions-repo-settingsskills/github-actions-repo-settings/SKILL.md

Configure and enforce GitHub repository security settings as code: require actions to be pinned to full-length commit SHAs, require approval for all outside collaborators' fork pull-request workflow runs, and protect the default branch via a repository ruleset. Includes a generate/diff/apply engine (introspect current state -> emit YAML; detect drift; apply desired state) and a central fan-out workflow to enforce a baseline across many repos. Trigger when: setting up a new repo, running a security audit, onboarding a repo to org standards, enforcing settings across a fleet, or when asked to configure or harden Actions security settings. Trigger on mentions of "actions settings", "repo security settings", "repo settings as code", "settings drift", "fork approval", "outside collaborators", "actions policy", "branch protection", "ruleset", or "harden repo".

review-bash-ci-reliabilityskills/review-bash-ci-reliability/SKILL.md

Review bash scripts for CI/CD reliability issues. Use when writing or reviewing shell scripts that run in GitHub Actions or other CI environments to catch silent failure patterns, missing error propagation, and environment assumptions.

skills-doctorskills/skills-doctor/SKILL.md

Diagnose skill DELIVERY health for the current session: name the surface, diff the expected set in `skills.lock` against what actually loaded (the session's own skill listing, `~/.claude/skills/`, the account `synced/manifest.json`, `claude plugin list`), attribute every skill to the registry and bundle it came from by reading the bootstrap hook's own install record rather than guessing, and flag silent shadowing, account-store staleness, dangling payload references, and always-on context cost. Reports only — it never installs, copies, deletes or repairs anything. Use when a skill you expected is missing or won't trigger, when a repo-owned skill looks overridden, when the session-start `skills:` verdict reads DEGRADED, when you need to know where a skill came from or whether the hook installed it, or when the user says "why didn't that skill load", "which skills do I actually have", "is my registry stale", "audit my skills", "skills doctor".

workflow-path-auditskills/workflow-path-audit/SKILL.md

Audit GitHub Actions workflows for salient-path conditionals — every workflow that triggers on pull_request or push must filter on the files and directories its steps actually depend on, and skip with success when nothing salient changed. Use when adding a new workflow, modifying an existing one's steps, renaming/moving files a workflow depends on, or when a CI bill spike points at workflows running on irrelevant changes.

writing-adrsskills/writing-adrs/SKILL.md

Write a lightweight Nygard-style Architecture Decision Record under `docs/decisions/` when a non-obvious decision needs context that won't fit in a code comment and would rot if left only in a PR description. Trigger when the user asks "should I document this", "add an ADR", "why did we do X" referring to a past choice with no comment trail, or when you find yourself drafting a multi-paragraph PR description justifying a one-line change. Also covers the bootstrap case (creating `docs/decisions/README.md` + the first ADR from scratch) if the folder doesn't exist yet.

Plugin manifests2

plugins/adam/.claude-plugin/plugin.json
{
  "name": "adam",
  "version": "1.2.0",
  "description": "Adam's general-purpose skills, safe anywhere including cloud sessions: writing voice, GitHub Actions debugging and hardening, ADRs, resolving task ambiguity.",
  "author": {
    "name": "Adam Daniel"
  }
}
plugins/adam/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "adam",
  "version": "1.2.0",
  "description": "Adam's general-purpose skills, safe anywhere including cloud sessions: writing voice, GitHub Actions debugging and hardening, ADRs, resolving task ambiguity.",
  "author": {
    "name": "Adam Daniel"
  },
  "repository": "https://github.com/Adam-S-Daniel/agentskills",
  "keywords": [
    "writing",
    "voice",
    "github-actions",
    "ci-cd",
    "debugging",
    "security",
    "supply-chain",
    "sha-pinning",
    "settings-as-code",
    "bash",
    "code-review",
    "adr",
    "documentation",
    "requirements",
    "ambiguity",
    "planning"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[adam on Agent Plugins Marketplace](https://pluginsmp.com/plugins/adam)