skyline-config

skyline-config is a skill for Claude Code, Codex from wechat-miniprogram/skyline-skills. It costs 106 tokens per session (1,590 once invoked), scanned A, original, MIT.

A configuration guide for Skyline, a rendering engine used by WeChat Mini Programs, including app-wide, page, and developer-tool JSON settings.

In plain words
What is it for?
Use it to configure new Skyline projects, migrate from WebView, set page behavior, and check required JSON options.
Why use it?
It helps prevent compilation and rendering problems when creating, migrating, or combining Skyline and WebView pages.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to configure new Skyline projects, migrate from WebView, set page behavior, and check required JSON options.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wechat-miniprogram/skyline-skills/skyline-config
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add wechat-miniprogram/skyline-skills --skill skyline-config
Clone the repo
git clone --depth 1 https://github.com/wechat-miniprogram/skyline-skills

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 skyline-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/wechat-miniprogram/skyline-skills/skyline-config.svg)](https://agentmods.dev/skills/wechat-miniprogram/skyline-skills/skyline-config)
Your own site
<a href="https://agentmods.dev/skills/wechat-miniprogram/skyline-skills/skyline-config"><img src="https://agentmods.dev/badge/skills/wechat-miniprogram/skyline-skills/skyline-config.svg" alt="Measured on agentmods" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,590 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 26 Mar 2026
  • Snyk pass 26 Mar 2026
How audits are shown
Origin original No closer match found 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.00106 $0.01590
Opus 5 $0.00053 $0.00795
Sonnet 5 $0.00021 $0.00318
Haiku 4.5 $0.00011 $0.00159

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

Security

Grade A, and why

skyline-config scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/skyline-config/SKILL.md · 185 lines

How it starts

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

Skyline JSON 配置规范

适用场景

  • 创建新的 Skyline 小程序项目
  • 从 WebView 迁移到 Skyline 渲染引擎
  • 配置混合渲染(部分页面 Skyline、部分 WebView)
  • 配置 rendererOptions 优化样式兼容性
  • 排查 Skyline 配置相关的编译错误

核心概念

三级配置层次

层级 文件 作用 关键配置
全局 app.json 全局启用 Skyline renderer, componentFramework, rendererOptions
页面 页面.json 页面级配置/覆盖 navigationStyle, disableScroll, renderer
工具 project.config.json 开发者工具调试 setting.skylineRenderEnable

最小必需配置

// app.json
{
  "renderer": "skyline",
  "componentFramework": "glass-easel",
  "lazyCodeLoading": "requiredComponents"
}
// 每个页面的 .json
{
  "navigationStyle": "custom"
}

文档索引

根据需求快速定位(路径相对于 references/):

我想要... 查阅文档
了解 app.json 中所有 Skyline 相关配置 app-config.md
了解页面级配置和混合渲染 page-config.md
配置开发者工具 project-config.md
查看完整配置模板 patterns.md

强制规则

MUST(必须遵守)

  1. app.json 必须包含三项必需配置

    // ❌ 错误:缺少 componentFramework 和 lazyCodeLoading
    {
      "pages": ["pages/index/index"],
      "renderer": "skyline"
    }
    
    // ✅ 正确:三项缺一不可
    {
      "renderer": "skyline",
      "componentFramework": "glass-easel",
      "lazyCodeLoading": "requiredComponents"
    }
    
  2. 每个页面的 json 必须配置 "navigationStyle": "custom"

    // ❌ 错误:缺少 navigationStyle,编译报错
    // getAppConfig error: the "navigationStyle" configuration
    // for the page should be set to "custom"
    {
      "usingComponents": {}
    }
    
    // ✅ 正确
    {
      "navigationStyle": "custom"
    }
    

    Skyline 不支持原生导航栏,必须使用自定义导航栏。

  3. 使用 scroll-view 替代页面级滚动时配置 "disableScroll": true

    // ❌ 错误:未禁用页面滚动,可能与 scroll-view 冲突
    {
      "navigationStyle": "custom"
    }
    
    // ✅ 正确:禁用页面滚动,使用 scroll-view 管理滚动
    {
      "navigationStyle": "custom",
      "disableScroll": true
    }
    
  4. rendererOptions 应配置 defaultDisplayBlock 和 defaultContentBox 以对齐 WebView 行为

    // ❌ 错误:未配置 rendererOptions,Skyline 默认 display:flex + border-box
    {
      "renderer": "skyline"
    }
    
    // ✅ 正确:对齐 WebView 的 block + content-box 默认行为
    {
      "renderer": "skyline",
      "rendererOptions": {
        "skyline": {
          "defaultDisplayBlock": true,
          "defaultContentBox": true
        }
      }
    }
    

Read the full file on GitHub · 185 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 185 lines · 106 tokens per session scan A d15e7c66aaca

Subscribe to this mod's changes

skyline-config is a skill published in the GitHub repository wechat-miniprogram/skyline-skills (53 stars, last pushed 3mo ago), licensed MIT. It adds 106 tokens to every session and 1,590 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

animate-expo

Build animations in React Native and Expo, making the decisions in the order that determines whether they feel right — should it animate, which thread it runs on, which properties, spring or timing, how the gesture hands off, how it degrades. Writes the implementation with Reanimated, Gesture Handler, Expo Router and…

emilkowalski/skills · 112 tokens

leanback-to-compose-tv-migration

Provides instructions and architectural patterns for migrating Android TV applications from legacy Leanback UI Toolkit, Android Views, or Support Fragments to Jetpack Compose for TV (androidx.tv). Use this skill for Leanback to Compose migrations, including browse screen, settings screen, authentication screen, login…

android/skills · 151 tokens

maui-data-binding

Guidance for .NET MAUI XAML and C# data bindings — compiled bindings, INotifyPropertyChanged / ObservableObject, value converters, binding modes, multi-binding, relative bindings, fallbacks, and MVVM best practices. USE FOR: setting up compiled bindings with x:DataType, implementing INotifyPropertyChanged or…

dotnet/skills · 180 tokens

web-haptics

Add haptic feedback to web apps using the web-haptics library. Use when building mobile-facing UIs that need tactile feedback on buttons, toggles, forms, pickers, and other interactive elements.

lochie/web-haptics · 47 tokens

migrate-xml-views-to-jetpack-compose

Provides a structured workflow for migrating an Android XML View to Jetpack Compose. This skill details the step-by-step process, from planning and dependency setup, to theming and layout migration, validation and XML cleanup. Use this skill when you need to migrate an XML View to Jetpack Compose in an Android…

android/skills · 98 tokens

axiom-swiftui

Use when building, fixing, or improving ANY SwiftUI UI — views, navigation, layout, animations, performance, architecture, gestures, debugging, iOS 26 features.

CharlesWiltgen/Axiom · 41 tokens