Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

update-jamdesk更新 Jamdesk

Agent Skill

update-jamdesk 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

392

周安装

16

GitHub Stars

6

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:update-jamdesk(更新 Jamdesk)
来源仓库:https://github.com/jamdesk/skills
仓库路径:skills/update-jamdesk
安装命令:
npx skills add https://github.com/jamdesk/skills --skill update-jamdesk
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jamdesk/skills --skill update-jamdesk

简介

用于查找、检索和筛选相关信息,支持 Jamdesk 相关任务。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位相关资料时使用。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令集成。
  • 需确认权限范围,避免触发不必要的联网或文件操作。
  • update-jamdesk 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Update Jamdesk

Updates customer-facing documentation in external repositories (not CLAUDE.md). Locates docs via .jamdesk-docs-path, asks clarifying questions, writes documentation, and verifies with the jamdesk CLI.

Announce: "I'm using the update-jamdesk skill to update your documentation."

Use when: User-facing changes to APIs, CLI commands, UI, config options, component behavior, or docs.json schema/features.

Skip when: Internal refactors, test-only changes, build/CI config, performance work without behavior change.

Common mistake: Changes to docs.json format or config handling are user-facing. Even if the change was made inside the docs repo itself, ask: "Does this introduce or change a config pattern that customers use?" If yes, document it.

Critical Rules

AlwaysNever
Include frontmatter (title 50-60 chars, description 120-160 chars)Create stub pages with "TODO"
Use built-in components firstUse mint.json (use docs.json)
Ask clarifying questions before writingSkip verification
State prerequisites up frontInclude secrets, tokens, or real customer data
Use active voice and action-oriented headingsPromise guarantees ("always works", "instant")
Include explicit warnings for destructive stepsUse "click here" link text

Flags

FlagBehavior
(none)Full workflow: locate → clarify → analyze → write → verify → commit
--previewPhases 1-3 only, describe changes without making them

Proactive: After /commit with changes to **/api/**, **/cli/**, or **/components/**, suggest running this skill.

Phase 1: Locate Documentation

Find .jamdesk-docs-path by walking up from current directory to git root.

docs_path: ../customer-docs    # Required - relative or absolute path
docs_branch: main              # Optional, default: main

First-time setup: If config doesn't exist, ask user for their docs repo path and create the file. This only happens once per project. Point users to https://jamdesk.com/docs for help getting started with Jamdesk.

Validation: Path exists, contains docs.json, check for uncommitted changes. If same git repo as code, skip separate git operations.

Phase 2: Clarify Scope

Review conversation to identify what changed, then ask:

  1. Branch strategy: Feature branch (recommended), main, or current branch?
  2. Scope confirmation: "I plan to [create/update] these pages:... Any changes?"
  3. Additional context (if needed): Terminology, related features, edge cases

Principle: Ask first, write later. 30-second clarification prevents 10-minute rework.

Phase 3: Analyze Existing Docs

Search docs repo for existing coverage of the feature. Present findings:

Existing: getting-started.mdx mentions feature briefly
Missing: No dedicated page

Recommended:
1. Create: features/new-feature.mdx
2. Update: getting-started.mdx (add link)

Decision matrix:

ScenarioAction
New featureCreate new page
Behavior changeUpdate existing page describing that behavior
Small additionAdd section to existing page
Major capabilityNew standalone page
Deprecation/removalUpdate existing + add migration notes
Advanced usageAdd <Accordion> to existing page (keeps the page scannable for beginners)
New docs.json config/patternUpdate docs.json reference and/or navigation docs

Phase 4: Write Documentation

Reference https://jamdesk.com/docs for full standards.

Content quality:

  • Explain *why*, not just *what*
  • Show the simplest working example first
  • Use real values in examples, not placeholders (readers learn faster from concrete examples they can copy-paste)
  • One concept per section, 3-7 subsections per page
  • Define terms once and reuse consistently

Writing quality:

  • Active voice, direct instructions
  • Short sentences, avoid idioms (global audiences)
  • Action-oriented headings ("Configure X", "Verify Y", "Troubleshoot Z")
  • Descriptive link text (never "click here")
  • Include <Warning> for destructive/irreversible steps
  • No description echo: The opening paragraph MUST say something different from the frontmatter description. The description is for SEO meta tags; the opening paragraph should complement it with context, prerequisites, or what the reader will accomplish -- not repeat it.

Page structure:

  1. Opening paragraph (what + why + target audience)
  2. Prerequisites (tools, access, versions)
  3. Quick Start (simplest example)
  4. Configuration/Details
  5. Examples (basic → advanced)
  6. What's Next (2-4 related links)

Page types:

  • Task pages: Step-by-step procedure with numbered steps
  • Reference pages: Minimal example first, then expand with details

Heading structure: Single H1 (page title in frontmatter), body sections start at H2.

Minimal template:

---
title: Feature Name
description: SEO description (120-160 chars, unique per page)
lastUpdated: 2026-02-03  # Optional, for frequently-changing features
---

What this does and why it's useful. Target audience: developers who need X.

## Prerequisites

- Node.js 18+
- API key from [Settings](/settings)

## Quick Start

\`\`\`bash
command --example
\`\`\`

## What's Next?

<Columns cols={2}>
  <Card title="Related Feature" href="/related">
    Continue with this
  </Card>
  <Card title="API Reference" href="/api">
    Full API details
  </Card>
</Columns>

Components: <Tabs>, <Steps>, <Accordion>, <Columns>, <Card>, <Note>/<Warning>/<Tip>, <CodeGroup>. There is no <Cards> component -- use <Columns cols={2}> with <Card> children. See https://jamdesk.com/docs/components

Images: Store in /images/<feature>/, use absolute paths, always include alt text, avoid color-only cues.

Links: Relative paths, no .mdx extension, avoid orphan pages, link to source of truth (API spec, release notes).

API docs: Prefer OpenAPI auto-generation when available.

Navigation: Add new pages to docs.json navigation in alphabetical order unless the user has specified a different ordering or the existing structure suggests intentional grouping.

Maintenance: Use lastUpdated frontmatter for frequently-changing features. Mark or remove deprecated guidance promptly.

Phase 5: Verify

With CLI (recommended):

jamdesk dev          # Preview locally
jamdesk validate     # Check docs.json schema
jamdesk broken-links # Find broken links

Without CLI: Verify manually - code examples have language tags, frontmatter has title/description, links use correct paths (no .mdx), new pages added to docs.json.

Fix errors before proceeding. If user dislikes changes, they can git checkout. to revert before commit.

Phase 6: Commit

Present summary of changes, then ask user preference:

  1. Commit to feature branch
  2. Show diff first
  3. Make additional changes

After commit, offer to push and create PR.

Commit format: docs: [action] [what] (e.g., docs: add webhook configuration guide)

Quick Reference

SituationAction
No config fileAsk user, create .jamdesk-docs-path
External repoFeature branch, separate git ops
Same-repo docsNo separate git ops needed
--preview flagAnalyze only, no changes
CLI unavailableManual verification checklist

Example

User: Document the new webhook feature

Claude: I'm using the update-jamdesk skill...

Found docs at ../customer-docs

Branch strategy?
1. Feature branch (recommended)
2. Main
3. Current

User: 1

Claude: I'll create docs/webhooks. Scope look right?

User: Yes, also update API reference

[Writes docs, runs verification]

✓ validate passed
✓ broken-links passed

Files: webhooks/overview.mdx (new), api/reference.mdx (updated), docs.json (updated)

Commit? [Y/n]

User: Y

Claude: Committed. Push and create PR?

Red Flags

Stop if you catch yourself:

  • Skipping clarifying questions
  • Creating pages without updating docs.json
  • Using full URLs for internal links
  • Adding images without alt text
  • Making changes with --preview flag
  • Including secrets, tokens, or real customer data
  • Using "click here" or vague link text
  • Missing <Warning> on destructive steps
  • Leaving deprecated content without marking it
  • Copying the frontmatter description as the opening paragraph (description echo)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.05%
按下载量换算46

Claude

28.5%
按下载量换算36

Cursor

19.64%
按下载量换算25

Gemini CLI

10.86%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills