arkaos 2.71.0 → 2.72.0
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.72.0
|
|
Binary file
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
Binary file
|
|
@@ -125,12 +125,26 @@ def write_index(results: list[ExportResult]) -> Path:
|
|
|
125
125
|
"",
|
|
126
126
|
"Open-spec exports of ArkaOS's outward-facing development skills.",
|
|
127
127
|
"Compatible with any Agent Skills runtime "
|
|
128
|
-
"(see https://agentskills.io)
|
|
128
|
+
"(see https://agentskills.io) — Claude Code, Codex CLI, Cursor, "
|
|
129
|
+
"VS Code Copilot, Atlassian, Figma.",
|
|
130
|
+
"",
|
|
131
|
+
"## Install via Claude Code Plugin Marketplace",
|
|
132
|
+
"",
|
|
133
|
+
"Register this repository as a marketplace, then install the bundle:",
|
|
134
|
+
"",
|
|
135
|
+
"```",
|
|
136
|
+
"/plugin marketplace add andreagroferreira/arka-os",
|
|
137
|
+
"/plugin install arkaos-dev-skills@arkaos",
|
|
138
|
+
"```",
|
|
139
|
+
"",
|
|
140
|
+
"After install, the ten skills below are available in your Claude "
|
|
141
|
+
"Code session. Mention a skill by name (e.g., *\"use code-review on "
|
|
142
|
+
"this PR\"*) and Claude loads the relevant `SKILL.md`.",
|
|
129
143
|
"",
|
|
130
144
|
"## Catalog",
|
|
131
145
|
"",
|
|
132
146
|
]
|
|
133
|
-
for r in results:
|
|
147
|
+
for r in sorted(results, key=lambda x: x.slug):
|
|
134
148
|
lines.append(f"- [{r.slug}]({r.slug}/SKILL.md)")
|
|
135
149
|
lines.append("")
|
|
136
150
|
lines.append(
|