DeepSeek-Harness-Desktop: Skill for Claude Code

.agents/skills/asc-notarization/SKILL.md

asc-notarization is a skill for Claude Code, Codex from web-casa/DeepSeek-Harness-Desktop. It costs 47 tokens per session (1,601 once invoked), scanned C, a copy of asc-notarization, MIT.

A workflow for packaging macOS apps, signing them with an Apple Developer ID certificate, and sending them to Apple for notarization. Notarization is Apple's security check for apps distributed outside the App Store.

In plain words
What is it for?
Preparing an Xcode macOS project for release, creating an archive, applying Developer ID signing, and submitting the app for Apple notarization.
Why use it?
It organizes the command-line steps needed to make an externally distributed app trusted by macOS. It also checks for common signing and certificate problems before the build.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is web-casa/DeepSeek-Harness-Desktop's own configuration. It tells Claude Code and Codex how to work on DeepSeek-Harness-Desktop itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything DeepSeek-Harness-Desktop configures →

Reuse

Borrowing it

Nothing to install: this file belongs to web-casa/DeepSeek-Harness-Desktop. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/web-casa/DeepSeek-Harness-Desktop/main/.agents/skills/asc-notarization/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/web-casa/DeepSeek-Harness-Desktop

Made for: Claude Code, Codex.

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 asc-notarization

README.md
[![agentmods](https://agentmods.dev/badge/skills/web-casa/deepseek-harness-desktop/asc-notarization.svg)](https://agentmods.dev/skills/web-casa/deepseek-harness-desktop/asc-notarization)
Your own site
<a href="https://agentmods.dev/skills/web-casa/deepseek-harness-desktop/asc-notarization"><img src="https://agentmods.dev/badge/skills/web-casa/deepseek-harness-desktop/asc-notarization.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,601 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% 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.1 $0.00047 $0.01601
Opus 5 $0.00023 $0.00800
Sonnet 5 $0.00009 $0.00320
Haiku 4.5 $0.00005 $0.00160

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

Security

Grade C, and why

asc-notarization scanned grade C with 2 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 9d 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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -sL "LOG_URL" | python3 -m json.tool

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sL "LOG_URL" | python3 -m json.tool
Origin

This is a copy

100% identical to asc-notarization — 0 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.

.agents/skills/asc-notarization/SKILL.md · 213 lines

How it starts

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

macOS Notarization

Use this skill when you need to notarize a macOS app for distribution outside the App Store.

Preconditions

  • Xcode installed and command line tools configured.
  • Auth is configured (asc auth login or ASC_* env vars).
  • A Developer ID Application certificate in the local keychain.
  • The app's Xcode project builds for macOS.

Preflight: Verify Signing Identity

Before archiving, confirm a valid Developer ID Application identity exists:

security find-identity -v -p codesigning | grep "Developer ID Application"

If no identity is found, create one at https://developer.apple.com/account/resources/certificates/add (the App Store Connect API does not support creating Developer ID certificates).

Fix Broken Trust Settings

If codesign or xcodebuild fails with "Invalid trust settings" or "errSecInternalComponent", the certificate may have custom trust overrides that break the chain:

# Check for custom trust settings
security dump-trust-settings 2>&1 | grep -A1 "Developer ID"

# If overrides exist, export the cert and remove them
security find-certificate -c "Developer ID Application" -p ~/Library/Keychains/login.keychain-db > /tmp/devid-cert.pem
security remove-trusted-cert /tmp/devid-cert.pem

Verify Certificate Chain

After fixing trust settings, verify the chain is intact:

codesign --deep --force --options runtime --sign "Developer ID Application: YOUR NAME (TEAM_ID)" /path/to/any.app 2>&1

The signing must show the chain: Developer ID Application → Developer ID Certification Authority → Apple Root CA.

Step 1: Archive

xcodebuild archive \
  -scheme "YourMacScheme" \
  -configuration Release \
  -archivePath /tmp/YourApp.xcarchive \
  -destination "generic/platform=macOS"

Step 2: Export with Developer ID

Create an ExportOptions plist for Developer ID distribution:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>method</key>
    <string>developer-id</string>
    <key>signingStyle</key>
    <string>automatic</string>
    <key>teamID</key>
    <string>YOUR_TEAM_ID</string>
</dict>
</plist>

Read the full file on GitHub · 213 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. 9d ago First seen · 213 lines · 47 tokens per session scan C e71916140346

Subscribe to this mod's changes

asc-notarization is a skill published in the GitHub repository web-casa/DeepSeek-Harness-Desktop (118 stars, last pushed 3d ago), licensed MIT. It adds 47 tokens to every session and 1,601 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). It is 100% identical to asc-notarization, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories