Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计提醒

plans-and-features-best-practices计划和特色最佳实践

Agent Skill

plans-and-features-best-practices 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

282

周安装

12

GitHub Stars

公开资料未说明

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:plans-and-features-best-practices(计划和特色最佳实践)
来源仓库:https://github.com/getpaykit/skills
仓库路径:skills/plans-and-features-best-practices
安装命令:
npx skills add https://github.com/getpaykit/skills --skill plans-and-features-best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/getpaykit/skills --skill plans-and-features-best-practices

简介

用于处理 GitHub 仓库、Issue、PR 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和验证。
  • 可结合来源仓库和原始 README 核验具体用法,确保功能匹配。
  • 安装前应确认权限范围和维护状态,避免访问受限资源。plans-and-features-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。
  • 建议在使用前评估技能是否会触发联网、命令执行或文件读写。

SKILL.md

Plans and Features

Define your billing structure in code with PayKit's schema DSL.

Features

A feature is a capability that a plan grants. Two types:

Boolean Features

On/off access. Either the customer has it or doesn't.

import { feature } from "paykitjs"

const customBranding = feature({ id: "custom_branding", type: "boolean" })
const prioritySupport = feature({ id: "priority_support", type: "boolean" })

Metered Features

Tracked usage with a limit that resets on an interval.

const messages = feature({ id: "messages", type: "metered" })
const apiCalls = feature({ id: "api_calls", type: "metered" })
const storage = feature({ id: "storage_gb", type: "metered" })

Metered features require limit and reset when included in a plan.

Feature ID rules: lowercase alphanumeric with _ and -, 1-64 characters.


Plans

A plan bundles features together with optional pricing.

import { plan } from "paykitjs"

const free = plan({
  id: "free",
  group: "base",
  default: true,
  includes: [
    messages({ limit: 100, reset: "month" }),
    apiCalls({ limit: 1_000, reset: "month" }),
  ],
})

const pro = plan({
  id: "pro",
  group: "base",
  price: { amount: 29, interval: "month" },
  includes: [
    messages({ limit: 5_000, reset: "month" }),
    apiCalls({ limit: 50_000, reset: "month" }),
    customBranding(),
    prioritySupport(),
  ],
})

const enterprise = plan({
  id: "enterprise",
  group: "base",
  price: { amount: 99, interval: "month" },
  includes: [
    messages({ limit: 100_000, reset: "month" }),
    apiCalls({ limit: 1_000_000, reset: "month" }),
    customBranding(),
    prioritySupport(),
  ],
})

Plan Options

OptionRequiredDescription
idYesUnique identifier. Lowercase alphanumeric, _, -. 1-64 chars
groupNoMutual exclusivity group. Customer can have one active plan per group
defaultNoAuto-subscribe new customers. Requires group
priceNo{amount, interval}. Omit for free plans
nameNoDisplay name. Auto-derived from ID if omitted
includesNoArray of feature includes

Pricing

price: { amount: 19, interval: "month" }
price: { amount: 190, interval: "year" }

amount is in the provider's default currency unit (dollars for USD). Max: $999,999.99.

interval: "month" or "year".


Plan Groups

Plans in the same group are mutually exclusive. A customer can only hold one active plan per group at a time. Switching between plans in the same group triggers upgrade/downgrade logic automatically.

// These three plans are mutually exclusive
const free = plan({ id: "free", group: "base", default: true, ... })
const pro = plan({ id: "pro", group: "base", ... })
const enterprise = plan({ id: "enterprise", group: "base", ... })

Default plan: One plan per group can be default: true. New customers are auto-subscribed to it on upsertCustomer.


Feature Reset Intervals

For metered features, reset determines when usage resets:

ResetPeriod
"day"Every 24 hours
"week"Every 7 days
"month"Every calendar month
"year"Every calendar year

Reset is lazy. It happens on the next check() or report() call after the reset time passes.


Including Features in Plans

Boolean features take no arguments:

includes: [customBranding(), prioritySupport()]

Metered features require limit and reset:

includes: [messages({ limit: 5_000, reset: "month" })]

The same feature can have different limits across plans:

const free = plan({
  id: "free",
  includes: [messages({ limit: 100, reset: "month" })],
})

const pro = plan({
  id: "pro",
  includes: [messages({ limit: 5_000, reset: "month" })],
})

Passing Plans to PayKit

export const paykit = createPayKit({
  // ...
  plans: [free, pro, enterprise],
})

After changing plans, run npx paykitjs push to sync to the database and Stripe.


Type Inference

Plan and feature IDs are inferred as literal types:

type PlanId = typeof paykit.$infer.planId
// "free" | "pro" | "enterprise"

type FeatureId = typeof paykit.$infer.featureId
// "messages" | "api_calls" | "custom_branding" | "priority_support"

These types flow through to subscribe(), check(), report(), and the client SDK.


Common Billing Models

SaaS with tiers

const free = plan({ id: "free", group: "main", default: true, includes: [...] })
const pro = plan({ id: "pro", group: "main", price: { amount: 29, interval: "month" }, includes: [...] })

Usage-based (AI, API)

const tokens = feature({ id: "tokens", type: "metered" })
const starter = plan({
  id: "starter", group: "main", default: true,
  includes: [tokens({ limit: 10_000, reset: "month" })],
})
const growth = plan({
  id: "growth", group: "main",
  price: { amount: 49, interval: "month" },
  includes: [tokens({ limit: 100_000, reset: "month" })],
})

Feature-gated

const analytics = feature({ id: "analytics", type: "boolean" })
const sso = feature({ id: "sso", type: "boolean" })
const basic = plan({ id: "basic", group: "main", default: true, includes: [] })
const business = plan({
  id: "business", group: "main",
  price: { amount: 79, interval: "month" },
  includes: [analytics(), sso()],
})

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.11%
按下载量换算39

Claude

31.79%
按下载量换算31

Cursor

17.82%
按下载量换算18

Gemini CLI

8.79%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills