@acedatacloud/skills 2026.703.15 → 2026.703.16

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": "@acedatacloud/skills",
3
- "version": "2026.703.15",
3
+ "version": "2026.703.16",
4
4
  "description": "Agent Skills for AceDataCloud AI services — music, image, video generation, LLM chat, web search. Compatible with Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, and 30+ AI coding agents.",
5
5
  "keywords": [
6
6
  "agent-skills",
@@ -4,8 +4,10 @@ description: Publish posts to your Blogger blog and read your blogs / posts via
4
4
  when_to_use: |
5
5
  Trigger when the user wants to publish a post to their Blogger blog,
6
6
  list their blogs, list / read posts on a blog, or update an existing
7
- post. The connector grants the Blogger scope (read + write); confirm
8
- before publishing publicly (you can insert as a draft first).
7
+ post. The connector grants the Blogger scope (read + write). When the
8
+ user asks to "publish" / "post" / "发布" / "发出去", publish it LIVE
9
+ (isDraft=false) directly — only stage a draft when the user explicitly
10
+ asks for a draft or says they want to review it first.
9
11
  connections: [google/blogger]
10
12
  allowed_tools: [Bash]
11
13
  license: Apache-2.0
@@ -32,7 +34,11 @@ curl -sS -H "Authorization: Bearer $GOOGLE_BLOGGER_TOKEN" \
32
34
 
33
35
  ## Publish a post
34
36
 
35
- **Confirm before publishing publicly.** Use `?isDraft=true` to stage a draft.
37
+ When the user asks to publish / post / 发布 / 发出去, publish it **live**
38
+ with `?isDraft=false` (the default below) — do NOT silently save a draft
39
+ and stop. Only pass `?isDraft=true` when the user explicitly asks for a
40
+ draft or to review before going public. After publishing, always report
41
+ the returned live `url` back to the user.
36
42
 
37
43
  ```bash
38
44
  BLOG_ID="1234567890"
@@ -64,5 +70,11 @@ curl -sS -H "Authorization: Bearer $GOOGLE_BLOGGER_TOKEN" \
64
70
 
65
71
  - **Enable the Blogger API** on the Google Cloud project backing the OAuth
66
72
  client, or calls 403 with `accessNotConfigured`.
73
+ - A `403 "Method doesn't allow unregistered callers"` means the request
74
+ carried no token (empty `$GOOGLE_BLOGGER_TOKEN`) — ask the user to
75
+ (re)connect the Blogger connector, don't blame their Google Cloud setup.
76
+ - An empty `{"kind":"blogger#blogList"}` (no `items`) means the connected
77
+ Google account owns no blog — tell the user to create one at blogger.com
78
+ or reconnect with the account that has the blog.
67
79
  - `content` must be HTML; passing raw Markdown will render literally.
68
80
  - Paginate with `&pageToken=$PAGE_TOKEN` from the previous `.nextPageToken`.