news 2026/8/13 23:13:23

比较好用的Skill汇总

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
比较好用的Skill汇总

Skill汇总

Skill网站地址:
https://skills.sh/
https://agentskills.codes/

1.archify

Archify 是适用于 Raven、Cursor、Claude Code、Codex CLI 和 OpenCode 的 Agent Skill。给它系统描述或代码仓库,就能得到可交互、可分享的专业技术地图。

打开就是成品 —— 五种技术图、四套视觉预设、深浅主题,以及显式启用的有限动态
合并前先看清架构变化 —— 把两份已校验快照对比为 Before / Delta / After,准确区分新增、删除、语义变化、移动和重路由
每次探索都有依据 —— 搜索节点、按需打开版本校验过的源码、追踪作者定义的上下游可达范围与精确路径、对比角色、播放故事,但不编造拓扑
一个文件即可放心交付 —— Typed JSON IR 和确定性校验生成独立 HTML,并支持 PNG、SVG、WebM 与 1200×630 分享卡片
https://github.com/tt-a1i/archify/blob/main/README_ZH.md

2.skill-creator

Create, test, and iteratively improve AI agent skills with structured evaluation and benchmarking.

Guides you through the full skill development lifecycle: intent capture, drafting, test case creation, evaluation, and iteration based on user feedback
Runs parallel test cases with and without the skill to measure impact, capturing timing and token usage for quantitative comparison
Generates an interactive browser-based reviewer showing outputs, qualitative feedback, and benchmark metrics (pass rates, latency, token efficiency) across iterations
Includes description optimization to improve skill triggering accuracy by testing 20 realistic trigger/non-trigger queries and iterating the description through up to 5 rounds

https://github.com/anthropics/skills

3. xlsx

Create, edit, and analyze Excel spreadsheets with formulas, formatting, and error-free calculations.

Supports reading, creating, and modifying .xlsx, .xlsm, .csv, and .tsv files using pandas for data analysis and openpyxl for formulas and formatting
Automatically recalculates all formulas and scans for Excel errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?) using LibreOffice integration
Enforces industry-standard color coding and number formatting for financial models (blue for inputs, black for formulas, green for internal links, red for external links)
Includes comprehensive documentation requirements for hardcoded values and assumption-based formula construction to maintain dynamic, updateable spreadsheets

https://github.com/anthropics/skills

4. frontend-design

Distinctive, production-grade frontend interfaces that reject generic AI aesthetics through intentional design choices.

Guides aesthetic direction selection (brutalist, maximalist, retro-futuristic, luxury, organic, etc.) before implementation to ensure cohesive, memorable designs
Emphasizes typography, color theming with CSS variables, motion design, spatial composition, and textural details as core design pillars
Generates working code (HTML/CSS/JS, React, Vue) that matches implementation complexity to the aesthetic vision, from refined minimalism to elaborate maximalism
Explicitly avoids overused fonts, clichéd color schemes, and predictable layouts that characterize generic AI-generated interfaces

https://github.com/anthropics/skills

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/8/13 23:09:37

Codeforce错题集

CF2244D Yaroslav and Productivity写完这道题我感觉我对dp动态规划的理解又多了一些。动态规划的题有两个核心1.最优子结构,一个大问题,可以由多个子问题的最优解组合而成。在本题中的体现,就是位置i的最优解只需要知道 i1 处“当前翻转为偶…

作者头像 李华
网站建设 2026/8/13 23:08:52

HTTP协议演进:从HTTP/0.9到HTTP/3的性能优化之路

1. HTTP协议发展概述 HTTP(HyperText Transfer Protocol)作为万维网的基础通信协议,自1991年诞生以来已经经历了多次重大迭代。从最初的HTTP/0.9到如今的HTTP/3,每次版本更新都针对当时的网络环境和应用需求做出了针对性优化。作为…

作者头像 李华
网站建设 2026/8/13 23:07:36

确界原理:从实数完备性到极限理论的基石

1. 从“最大/最小”到“确界”:极限理论的基石为何在此搞数学分析,或者更广义地说,学高等数学,很多人第一次感到“抽象”和“严格”的当头一棒,往往不是来自ε-δ语言,而是来自“确界原理”。标题里那一串描…

作者头像 李华
网站建设 2026/8/13 23:03:25

MySQL 8.1.0 安装配置全攻略:从零部署到避坑指南

1. 从零开始:为什么MySQL 8.1.0值得你花时间 如果你正在搭建一个新的开发环境,或者准备将老项目迁移到更新的数据库版本,那么MySQL 8.1.0绝对是一个绕不开的选项。我最近刚在几台生产环境的预备服务器上部署了它,整个过程下来&…

作者头像 李华
网站建设 2026/8/13 22:56:16

VNC协议优化:实现零延迟远程控制的技术解析

1. VNC协议的本质与零延迟挑战VNC(Virtual Network Computing)作为远程控制领域的经典协议,其核心价值在于实现跨平台的屏幕画面传输与输入控制。传统VNC实现通常基于RFB(Remote FrameBuffer)协议,采用客户…

作者头像 李华