@acedatacloud/skills 2026.716.1 → 2026.716.2
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.716.
|
|
3
|
+
"version": "2026.716.2",
|
|
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",
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: xiaohongshu
|
|
3
|
-
description:
|
|
3
|
+
description: |
|
|
4
|
+
Use the user's locally connected browser for complete Xiaohongshu / RED workflows:
|
|
5
|
+
login, recommendations, filtered search, note/comment/profile inspection, content
|
|
6
|
+
planning, image/video/long-article publishing, scheduling, product binding,
|
|
7
|
+
comments/replies, likes, and favorites. Every account write runs only in the
|
|
8
|
+
attached local tab with one-time local approval and stops on platform warnings.
|
|
4
9
|
when_to_use: |
|
|
5
10
|
Trigger whenever the user asks to use Xiaohongshu / RED: log in or switch account,
|
|
6
11
|
browse recommendations, search notes, inspect a note/comment/profile, analyze content,
|
|
@@ -56,6 +56,13 @@ def _nested_list(frontmatter: str, key: str) -> set[str]:
|
|
|
56
56
|
def test_browser_execution_frontmatter_contract() -> None:
|
|
57
57
|
frontmatter = _frontmatter(SKILL.read_text(encoding="utf-8"))
|
|
58
58
|
|
|
59
|
+
assert re.search(r"^name: xiaohongshu$", frontmatter, re.MULTILINE)
|
|
60
|
+
assert re.search(
|
|
61
|
+
r"^description: \|\n(?: .+\n)+when_to_use: \|$",
|
|
62
|
+
frontmatter,
|
|
63
|
+
re.MULTILINE,
|
|
64
|
+
)
|
|
65
|
+
assert " Use the user's locally connected browser for complete Xiaohongshu / RED workflows:" in frontmatter
|
|
59
66
|
assert re.search(r"^execution:\n browser:\n", frontmatter, re.MULTILINE)
|
|
60
67
|
assert _nested_list(frontmatter, "origins") == EXPECTED_ORIGINS
|
|
61
68
|
assert _nested_list(frontmatter, "capabilities") == EXPECTED_CAPABILITIES
|