Browse Source

v1.0.1: 同步版本号,manifest 平台标注与实测一致

- 版本 1.0.0 → 1.0.1(package.json / manifest / VERSION 常量 / SKILL.md / 测试断言)
- manifest.platforms 移除 skillhub(key 失效待补发),标注 skillhub.status=blocked
- 静态校验警告清零(frontmatter 补 author)
liuyuyang 2 days ago
parent
commit
133be2473a
7 changed files with 16 additions and 10 deletions
  1. 1 1
      SKILL.md
  2. 1 1
      browser/index.mjs
  3. 1 1
      lib/index.mjs
  4. 1 1
      package.json
  5. 9 3
      skill-package-manifest.json
  6. 1 1
      skills/skill-core-guide/SKILL.md
  7. 2 2
      test/smoke.mjs

+ 1 - 1
SKILL.md

@@ -1,7 +1,7 @@
 ---
 slug: fmode-skill-core-guide
 displayName: skill-core-guide
-version: 1.0.0
+version: 1.0.1
 summary: Fmode Harness 平台母技能标准指南 —— 平台端点真值表、ESM-first 四端标准、四渠道分发、六项自动质检、一键凭证供给、新技能脚手架。
 license: MIT
 author: Yuyang001 (FmodeAgent)

+ 1 - 1
browser/index.mjs

@@ -25,7 +25,7 @@
 // 平台常量(内联,保持浏览器 bundle 零依赖、可独立分发)
 // ============================================================
 
-export const VERSION = '1.0.0';
+export const VERSION = '1.0.1';
 export const SKILL_NAME = 'skill-core-guide';
 
 export const PLATFORM = {

+ 1 - 1
lib/index.mjs

@@ -14,7 +14,7 @@
  *   console.log(r.ok, r.errors);
  */
 
-export const VERSION = '1.0.0';
+export const VERSION = '1.0.1';
 export const SKILL_NAME = 'skill-core-guide';
 
 // 本地绑定:供本文件内的 CHANNELS / publishPlan 等使用

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "skill-core-guide",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "Fmode Harness 平台母技能标准指南:平台端点真值表、ESM-first 四端标准、四渠道分发、六项自动质检、一键凭证供给、新技能脚手架。",
   "type": "module",
   "main": "./lib/index.mjs",

+ 9 - 3
skill-package-manifest.json

@@ -1,6 +1,6 @@
 {
   "name": "skill-core-guide",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "Fmode Harness 平台母技能标准指南",
   "skills": [
     {
@@ -18,10 +18,16 @@
   },
   "tier": "system",
   "isMeta": true,
-  "platforms": ["gogs", "github", "npm", "skillhub"],
+  "platforms": [
+    "gogs",
+    "github",
+    "npm"
+  ],
   "skillhub": {
     "slug": "fmode-skill-core-guide",
-    "displayName": "skill-core-guide"
+    "displayName": "skill-core-guide",
+    "status": "blocked",
+    "blockReason": "sk-ent- 企业 key 服务端返回 401 invalid or expired token(2026-09-22 实测),预检已通过待补发"
   },
   "repository": {
     "gogs": "https://git.fmode.cn/fmode/skill-core-guide",

+ 1 - 1
skills/skill-core-guide/SKILL.md

@@ -1,7 +1,7 @@
 ---
 name: skill-core-guide
 description: "Fmode Harness 平台母技能标准指南。当你要(1)开发新技能、(2)检查技能质量、(3)发布技能到 Gogs/GitHub/npm/skillhub、(4)查平台端点是否可用、(5)配置 Fmode 凭据、(6)了解技能生态现状时使用本技能。它是 Fmode 技能生态的宪法:定义平台真值表、ESM-first 四端标准、四渠道分发、六项自动质检、诚实凭证供给。"
-version: 1.0.0
+version: 1.0.1
 author: Yuyang001 (FmodeAgent)
 license: MIT
 tags: [meta, standard, spec, harness, scaffold, quality-check, fmode, esm]

+ 2 - 2
test/smoke.mjs

@@ -44,7 +44,7 @@ test('lib/index.mjs 导出全部公共接口', () => {
   for (const k of required) {
     assert.ok(k in core, `缺少导出:${k}`);
   }
-  assert.equal(core.VERSION, '1.0.0');
+  assert.equal(core.VERSION, '1.0.1');
 });
 
 test('ENDPOINTS 真值表结构合法', () => {
@@ -309,7 +309,7 @@ test('browser/index.mjs 不 import 任何 node: 内置模块', () => {
 
 test('browser bundle 可独立 import 且导出核心常量', async () => {
   const b = await import('../browser/index.mjs');
-  assert.equal(b.VERSION, '1.0.0');
+  assert.equal(b.VERSION, '1.0.1');
   assert.ok(b.PLATFORM.apiBase.includes('fmode.cn'));
   assert.ok(Object.keys(b.ENDPOINTS).length > 0);
   assert.equal(typeof b.validatePackageJson, 'function');