DeepSeek-Harness-Desktop: Skill for Claude Code

.agents/skills/asc-signing-setup/SKILL.md

asc-signing-setup is a skill for Claude Code, Codex from web-casa/DeepSeek-Harness-Desktop. It costs 46 tokens per session (2,103 once invoked), scanned B, a copy of asc-signing-setup, MIT.

A setup guide for iOS and macOS app signing assets, including app identifiers, capabilities, certificates, provisioning profiles, and encrypted team sharing.

In plain words
What is it for?
It helps onboard an app, rotate signing assets, configure capabilities such as iCloud, and share signing files across a team using the asc command-line tool.
Why use it?
It structures the otherwise error-prone process of creating, renewing, configuring, and sharing the credentials used to sign Apple apps.

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-signing-setup/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-signing-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/web-casa/deepseek-harness-desktop/asc-signing-setup/github.svg)](https://agentmods.dev/skills/web-casa/deepseek-harness-desktop/asc-signing-setup)
Your own site
<a href="https://agentmods.dev/skills/web-casa/deepseek-harness-desktop/asc-signing-setup"><img src="https://agentmods.dev/badge/skills/web-casa/deepseek-harness-desktop/asc-signing-setup/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 asc-signing-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/web-casa/deepseek-harness-desktop/asc-signing-setup"><img src="https://agentmods.dev/badge/skills/web-casa/deepseek-harness-desktop/asc-signing-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,103 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. 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.00046 $0.02103
Opus 5 $0.00023 $0.01052
Sonnet 5 $0.00009 $0.00421
Haiku 4.5 $0.00005 $0.00210

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

Security

Grade B, and why

asc-signing-setup scanned grade B 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 12d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

chmod 600 "./signing-sync-password" "./distribution.p12" "./distribution-p12-password"
Origin

This is a copy

100% identical to asc-signing-setup — 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-signing-setup/SKILL.md · 169 lines

How it starts

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

asc signing setup

Use this skill when you need to create or renew signing assets for iOS/macOS apps.

Preconditions

  • Auth is configured (asc auth login or ASC_* env vars).
  • You know the bundle identifier and target platform.
  • You have a CSR file for certificate creation, or you will let asc certificates create --generate-csr create one.

Workflow

  1. Create or find the bundle ID:
    • asc bundle-ids list --paginate
    • asc bundle-ids create --identifier "com.example.app" --name "Example" --platform IOS
  2. Configure bundle ID capabilities:
    • asc bundle-ids capabilities list --bundle "BUNDLE_ID"
    • asc bundle-ids capabilities add --bundle "BUNDLE_ID" --capability ICLOUD
    • Add capability settings when required:
      • --settings '[{"key":"ICLOUD_VERSION","options":[{"key":"XCODE_6","enabled":true}]}]'
    • For the Developer Portal-only PRIVATE_CLOUD_COMPUTE capability, use a user-owned web session and the Developer Portal Bundle ID resource ID:
      • asc web bundle-ids capabilities enable --bundle-id "BUNDLE_RESOURCE_ID" --capability PRIVATE_CLOUD_COMPUTE --confirm
      • This capability is not available through the public App Store Connect capability enum. If the cached session cannot access Developer Portal, clear its scoped cache, then log in again with the same binary:
    • For App Groups, the public API can enable APP_GROUPS but cannot create or associate App Group resources. Use an Account Holder or Admin web session:
      • asc web app-groups list --paginate --output table
      • asc web app-groups create --name "Example Shared" --identifier "group.com.example.app.shared" --confirm
      • asc web app-groups assign --group "GROUP_RESOURCE_ID" --bundle-id "BUNDLE_RESOURCE_ID" --confirm
      • Resolve the opaque group ID with asc web app-groups list and the opaque Bundle ID resource ID with asc bundle-ids list. A changed assignment invalidates provisioning profiles containing that App ID, so regenerate affected profiles before the next signed build.
  3. Create a signing certificate:
    • asc certificates list --certificate-type IOS_DISTRIBUTION
    • asc certificates create --certificate-type IOS_DISTRIBUTION --csr "./cert.csr"
    • Or generate a key and CSR inline:
      • asc certificates create --certificate-type IOS_DISTRIBUTION --generate-csr --key-out "./signing/dist.key" --csr-out "./signing/dist.csr"
    • For Wallet passes, create the Pass Type ID first, then create its certificate:
      • asc pass-type-ids create --identifier "pass.com.example" --name "Example Pass"
      • asc certificates create --certificate-type PASS_TYPE_ID --pass-type-id "PASS_TYPE_ID" --csr "./pass.csr"
      • asc pass-type-ids certificates list --pass-type-id "PASS_TYPE_ID" --paginate
  4. Create a provisioning profile:
    • asc profiles create --name "AppStore Profile" --profile-type IOS_APP_STORE --bundle "BUNDLE_ID" --certificate "CERT_ID"
    • Include devices for development/ad-hoc:
      • asc profiles create --name "Dev Profile" --profile-type IOS_APP_DEVELOPMENT --bundle "BUNDLE_ID" --certificate "CERT_ID" --device "DEVICE_ID"
  5. Download the profile:
    • asc profiles download --id "PROFILE_ID" --output "./profiles/AppStore.mobileprovision"
  6. Inspect and install the downloaded profile locally when needed:
    • asc profiles inspect --path "./profiles/AppStore.mobileprovision" --output table
    • asc profiles inspect --path "./profiles/AppStore.mobileprovision" --entitlements --output markdown
    • asc profiles local install --path "./profiles/AppStore.mobileprovision"
    • asc profiles local list --output table
    • On macOS, the default directory follows the active Xcode: Xcode 16 or newer uses ~/Library/Developer/Xcode/UserData/Provisioning Profiles; Xcode 15 or older uses ~/Library/MobileDevice/Provisioning Profiles. Hosts without a full active Xcode fall back to the legacy directory and print a note to stderr.
    • Pass --install-dir when automation must target a fixed directory.

Read the full file on GitHub · 169 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. 12d ago First seen · 169 lines · 46 tokens per session scan B 540d65401b7a

Subscribe to this mod's changes

asc-signing-setup is a skill published in the GitHub repository web-casa/DeepSeek-Harness-Desktop (121 stars, last pushed 7d ago), licensed MIT. It adds 46 tokens to every session and 2,103 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). It is 100% identical to asc-signing-setup, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

swift-expert

Expert-level Swift development for iOS, macOS with SwiftUI, Combine, and modern Swift 5.9+. Use when the user mentions iOS, macOS, SwiftUI, Combine, async await, or Apple platforms, or when the task involves Modern Swift Features, Basics and Optionals, Functions and Closures, or Structs and Classes.

personamanagmentlayer/pcl · 76 tokens

tauri-expert

Expert in Tauri framework, Rust backend, web frontend integration, and lightweight desktop applications. Use when the user mentions desktop, Rust, web, cross platform, or performance, or when the task involves Tauri Architecture, Tauri vs Electron, Core Components, or Security Features.

personamanagmentlayer/pcl · 61 tokens

skill_creator

An interactive workflow for creating, importing, and adapting Tiangong skills, which are instruction packages for an AI agent.

silent-rs/silent-Tiangong · 0 tokens

volcengine_video

Instructions for generating videos with Volcengine’s Seedance model from a text description.

silent-rs/silent-Tiangong · 0 tokens

internet_search

Instructions for using a local search script to retrieve current web results as JSON, including titles, links, summaries, and sources.

silent-rs/silent-Tiangong · 0 tokens

codexplusplus

A desktop companion for Codex that connects through Chromium's developer interface and a local helper service. It can switch providers, convert between two chat API formats, manage sessions, export Markdown, track token usage history, and change parts of the interface.

AvalonLee/AstraCraft-Program · 0 tokens