@cloud411716/fancy-webnovel 0.1.25 → 0.1.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloud411716/fancy-webnovel",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "type": "module",
5
5
  "main": "plugins/fancy-bootstrap/index.js",
6
6
  "exports": {
@@ -114,7 +114,7 @@ async function applyBootstrap(ctx) {
114
114
  const result = await runBootstrapScript(projectRoot);
115
115
 
116
116
  if (result.ok) {
117
- notifyBootstrap(session, '✅ 项目初始化完成!\n\n📁 生成的目录结构:\n - 备份/\n - 图片/\n - 发布/\n - .快照/\n - RAG索引/\n - 调试/\n\n下一步:运行 /fancy-scan 扫榜,或 /fancy-topic 做选题决策');
117
+ notifyBootstrap(session, '✅ 项目初始化完成!\n下一步:运行 /fancy-scan 扫榜');
118
118
  } else {
119
119
  const errMsg = (typeof result.error === 'object' && result.error !== null)
120
120
  ? (result.error.message || JSON.stringify(result.error))
@@ -219,7 +219,7 @@ async function applyScan(ctx) {
219
219
  }
220
220
 
221
221
  if (!platform || !length || !PLATFORM_TABLE.find(r => r[1] === platform)) {
222
- notifyScan(session, '[/fancy-scan] 调用方式:带参数(平台 篇幅)\n[/fancy-scan] 调用方式:无参数(弹窗选择)\n\n📋 支持的平台:\n' +
222
+ notifyScan(session, '📋 支持的平台:\n' +
223
223
  PLATFORM_TABLE.map(r => ` ${r[0]}. ${r[3]}(${r[2]})`).join('\n') +
224
224
  '\n\n- 长篇:关注 追读、月票、订阅 等指标\n- 短篇:关注 传播、完读率 等指标\n- 知乎和七猫同时支持长篇和短篇');
225
225