Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问clear审计通过

publishing-platforms发布平台

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

941

周安装

40

GitHub Stars

19

下载量

330
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pluginagentmarketplace/custom-plugin-game-developer --skill publishing-platforms

简介

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。

  • 适合让 Agent 梳理敏感配置、检查依赖风险或分析鉴权逻辑。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 不能将工具输出直接当最终结论,涉及密钥、令牌或生产系统时应先确认最小权限和操作边界。
  • publishing-platforms 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Publishing Platforms

Platform Requirements Matrix

┌─────────────────────────────────────────────────────────────┐
│ STEAM                                                        │
├─────────────────────────────────────────────────────────────┤
│ □ Steamworks SDK integration                                │
│ □ Achievements, Cloud Saves, Trading Cards                  │
│ □ Store assets:                                              │
│   • Header (460x215)                                        │
│   • Capsule (231x87, 467x181, 616x353)                     │
│   • Screenshots (1920x1080 min, 5+ required)               │
│   • Trailer (MP4, 1080p recommended)                        │
│ □ Age rating (IARC)                                         │
│ □ Review time: 1-5 business days                           │
└─────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────┐
│ PLAYSTATION                                                  │
├─────────────────────────────────────────────────────────────┤
│ □ PlayStation Partners registration                         │
│ □ DevKit access                                              │
│ □ TRC (Technical Requirements Checklist)                    │
│ □ Trophies (Platinum, Gold, Silver, Bronze)                │
│ □ ESRB/PEGI rating certificate                              │
│ □ Accessibility features                                    │
│ □ Certification: 2-4 weeks                                  │
│ □ Slot fee required                                         │
└─────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────┐
│ XBOX                                                         │
├─────────────────────────────────────────────────────────────┤
│ □ Xbox Partner Center access                                │
│ □ XR (Xbox Requirements) compliance                         │
│ □ Achievements (1000G base game)                            │
│ □ Smart Delivery support                                    │
│ □ Game Pass consideration                                   │
│ □ Certification: 1-3 weeks                                  │
└─────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────┐
│ iOS APP STORE                                                │
├─────────────────────────────────────────────────────────────┤
│ □ Apple Developer Program ($99/year)                        │
│ □ App Store Connect setup                                   │
│ □ App icons (1024x1024)                                     │
│ □ Screenshots per device size                               │
│ □ Privacy policy URL                                        │
│ □ App Review Guidelines compliance                          │
│ □ IAP testing with sandbox                                  │
│ □ Review time: 24-48 hours (typically)                     │
└─────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────┐
│ GOOGLE PLAY                                                  │
├─────────────────────────────────────────────────────────────┤
│ □ Google Play Console ($25 one-time)                        │
│ □ App signing with Play App Signing                         │
│ □ Store listing assets                                      │
│ □ Content rating questionnaire                              │
│ □ Data safety form                                          │
│ □ Target API level compliance                               │
│ □ Review time: Hours to 7 days                             │
└─────────────────────────────────────────────────────────────┘

Steam Integration

// ✅ Production-Ready: Steamworks Integration
public class SteamManager : MonoBehaviour
{
    public static SteamManager Instance { get; private set; }
    public static bool Initialized { get; private set; }

    [SerializeField] private uint _appId = 480; // Test app ID

    private void Awake()
    {
        if (Instance != null) { Destroy(gameObject); return; }
        Instance = this;
        DontDestroyOnLoad(gameObject);

        try
        {
            if (SteamAPI.RestartAppIfNecessary(new AppId_t(_appId)))
            {
                Application.Quit();
                return;
            }

            Initialized = SteamAPI.Init();
            if (!Initialized)
            {
                Debug.LogError("[Steam] Failed to initialize. Is Steam running?");
                return;
            }

            Debug.Log($"[Steam] Initialized. User: {SteamFriends.GetPersonaName()}");
        }
        catch (System.Exception e)
        {
            Debug.LogError($"[Steam] Exception: {e.Message}");
        }
    }

    private void Update()
    {
        if (Initialized)
            SteamAPI.RunCallbacks();
    }

    public void UnlockAchievement(string achievementId)
    {
        if (!Initialized) return;

        SteamUserStats.SetAchievement(achievementId);
        SteamUserStats.StoreStats();
    }

    private void OnApplicationQuit()
    {
        if (Initialized)
            SteamAPI.Shutdown();
    }
}

Submission Checklist

PRE-SUBMISSION CHECKLIST:
┌─────────────────────────────────────────────────────────────┐
│  BUILD PREPARATION:                                          │
│  □ Final QA pass completed                                  │
│  □ All known critical bugs fixed                            │
│  □ Performance targets met                                  │
│  □ Build size optimized                                     │
│  □ Version number updated                                   │
├─────────────────────────────────────────────────────────────┤
│  STORE ASSETS:                                               │
│  □ All required images uploaded                             │
│  □ Trailer uploaded and reviewed                            │
│  □ Store description finalized                              │
│  □ Tags and categories set                                  │
│  □ Pricing configured                                       │
├─────────────────────────────────────────────────────────────┤
│  LEGAL/COMPLIANCE:                                           │
│  □ Age rating obtained                                      │
│  □ Privacy policy published                                 │
│  □ EULA prepared (if needed)                                │
│  □ Copyright/trademark cleared                              │
├─────────────────────────────────────────────────────────────┤
│  PLATFORM-SPECIFIC:                                          │
│  □ SDK properly integrated                                  │
│  □ Achievements/trophies configured                         │
│  □ Cloud save working                                       │
│  □ Platform TRC/XR requirements checked                     │
└─────────────────────────────────────────────────────────────┘

🔧 Troubleshooting

┌─────────────────────────────────────────────────────────────┐
│ PROBLEM: Steam review rejected                              │
├─────────────────────────────────────────────────────────────┤
│ COMMON REASONS:                                              │
│ • Incorrect content descriptors                             │
│ • Missing EULA/privacy policy                               │
│ • Store assets don't meet specs                             │
│ • Build crashes on launch                                   │
├─────────────────────────────────────────────────────────────┤
│ SOLUTIONS:                                                   │
│ → Read rejection reason carefully                           │
│ → Update specific items mentioned                           │
│ → Retest before resubmitting                                │
└─────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────┐
│ PROBLEM: Console certification failed                       │
├─────────────────────────────────────────────────────────────┤
│ COMMON REASONS:                                              │
│ • TRC/XR violation                                          │
│ • Crash during suspend/resume                               │
│ • Memory usage exceeds limits                               │
│ • Missing required features                                 │
├─────────────────────────────────────────────────────────────┤
│ SOLUTIONS:                                                   │
│ → Address each failure point specifically                   │
│ → Rerun full certification tests locally                    │
│ → Document fixes for future submissions                     │
└─────────────────────────────────────────────────────────────┘

┌─────────────────────────────────────────────────────────────┐
│ PROBLEM: App Store rejection                                │
├─────────────────────────────────────────────────────────────┤
│ COMMON REASONS:                                              │
│ • Guideline 4.3 (spam/duplicate)                            │
│ • IAP issues                                                │
│ • Privacy concerns                                          │
│ • Crashes or bugs                                           │
├─────────────────────────────────────────────────────────────┤
│ SOLUTIONS:                                                   │
│ → Review App Store Guidelines                               │
│ → Appeal if rejection seems incorrect                       │
│ → Request phone call with reviewer                          │
└─────────────────────────────────────────────────────────────┘

Platform Comparison

PlatformFeeRevenue ShareReview Time
Steam$100/game70/30 (scaling)1-5 days
EpicNone88/121-2 weeks
PlayStationSlot fee70/302-4 weeks
XboxFree (ID@Xbox)70/301-3 weeks
iOS$99/year70/30 (85/15)1-2 days
Android$25 one-time85/15Hours-7 days

Use this skill: When publishing games, meeting platform requirements, or distributing across platforms.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.12%
按下载量换算96

Antigravity

23.69%
按下载量换算78

OpenCode

19.04%
按下载量换算63

Gemini CLI

13.01%
按下载量换算43

Codex

8.54%
按下载量换算28

windsurf

3.82%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills