@laitszkin/apollo-toolkit 3.11.6 → 3.11.7
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/AGENTS.md +1 -0
- package/CHANGELOG.md +12 -0
- package/README.md +1 -0
- package/analyse-app-logs/scripts/__pycache__/filter_logs_by_time.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/log_cli_utils.cpython-312.pyc +0 -0
- package/analyse-app-logs/scripts/__pycache__/search_logs.cpython-312.pyc +0 -0
- package/docs-to-voice/scripts/__pycache__/docs_to_voice.cpython-312.pyc +0 -0
- package/generate-spec/scripts/__pycache__/create-specscpython-312.pyc +0 -0
- package/katex/scripts/__pycache__/render_katex.cpython-312.pyc +0 -0
- package/open-github-issue/scripts/__pycache__/open_github_issue.cpython-312.pyc +0 -0
- package/optimise-skill/SKILL.md +35 -0
- package/optimise-skill/agents/openai.yaml +4 -0
- package/optimise-skill/references/example_skill.md +35 -0
- package/package.json +1 -1
- package/read-github-issue/scripts/__pycache__/find_issues.cpython-312.pyc +0 -0
- package/read-github-issue/scripts/__pycache__/read_issue.cpython-312.pyc +0 -0
- package/resolve-review-comments/scripts/__pycache__/review_threads.cpython-312.pyc +0 -0
- package/text-to-short-video/scripts/__pycache__/enforce_video_aspect_ratio.cpython-312.pyc +0 -0
package/AGENTS.md
CHANGED
|
@@ -38,6 +38,7 @@ This repository enables users to install and run a curated set of reusable agent
|
|
|
38
38
|
- Users can run a shared submission-readiness pass that synchronizes changelog, project docs, `AGENTS.md`, and completed plan archives before commit, push, PR creation, or release.
|
|
39
39
|
- Users can learn new or improved skills from recent Codex conversation history.
|
|
40
40
|
- Users can audit and maintain the skill catalog itself, including dependency classification and shared-skill extraction decisions.
|
|
41
|
+
- Users can optimize existing agent skills by deriving the intended deliverable, tightening acceptance criteria, and rewriting `SKILL.md` into a leaner structure backed by extracted references.
|
|
41
42
|
- Users can implement approved spec planning sets directly in the current checkout and commit them to the active branch.
|
|
42
43
|
- Users can implement approved spec planning sets inside isolated git worktrees and keep the parent checkout clean.
|
|
43
44
|
- Users can coordinate approved multi-spec implementation batches by assigning each spec directory to an independent worktree-backed subagent with bounded concurrency.
|
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,18 @@ All notable changes to this repository are documented in this file.
|
|
|
10
10
|
|
|
11
11
|
### Fixed
|
|
12
12
|
|
|
13
|
+
## [v3.11.7] - 2026-05-12
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Add `optimise-skill`, a new catalog skill that reads a target skill and its supporting files, derives the intended deliverable and acceptance criteria, and rewrites the skill into a tighter `goal / acceptance criteria / workflow / examples / references` structure for higher-signal agent execution.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Catalog docs now include `optimise-skill`, and its bundled example reference path is normalized to match the shipped file name.
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
13
25
|
## [v3.11.6] - 2026-05-12
|
|
14
26
|
|
|
15
27
|
### Added
|
package/README.md
CHANGED
|
@@ -41,6 +41,7 @@ A curated skill catalog for Codex, OpenClaw, Trae, Agents, and Claude Code with
|
|
|
41
41
|
- open-source-pr-workflow
|
|
42
42
|
- openai-text-to-image-storyboard
|
|
43
43
|
- openclaw-configuration
|
|
44
|
+
- optimise-skill
|
|
44
45
|
- recover-missing-plan
|
|
45
46
|
- record-spending
|
|
46
47
|
- resolve-review-comments
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: optimise-skill
|
|
3
|
+
description: Use prompt engineering to optimise agent skill. Use it when you need to optimise a `SKILL.md`
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## 目標
|
|
7
|
+
在不影響被優化技能整體流程前提下,利用提示詞工程,對技能進行優化,減少冗余表達,增強agent對技能的理解能力以及實際工作中的使用效率。
|
|
8
|
+
|
|
9
|
+
## 驗收條件
|
|
10
|
+
- 被優化技能的最終交付產物不受影響
|
|
11
|
+
- 被優化技能有顯著冗余削減,且具備精確提示能力,盡最大可能釋放LLM的性能
|
|
12
|
+
|
|
13
|
+
## 工作流程
|
|
14
|
+
|
|
15
|
+
1. 識別交付物
|
|
16
|
+
完整閱讀整個技能的`SKILL.md`文檔,以及其引用的所有額檔案,包括但不限於`references/`, `scripts/`。基於獲取到的技能上下文資訊,總結出該技能的最終交付產物。
|
|
17
|
+
|
|
18
|
+
2. 制定驗收條件
|
|
19
|
+
制定驗收條件,從而確保LLM能夠穩定、可復現地按照驗收條件產出符合要求高質量最終交付物
|
|
20
|
+
|
|
21
|
+
3. 重寫技能
|
|
22
|
+
將整個技能的`SKILL.md`重寫。重寫後的技能應該只包含以下幾個關鍵組成部分:
|
|
23
|
+
- 技能目標
|
|
24
|
+
- 技能驗收條件
|
|
25
|
+
- 技能工作流程
|
|
26
|
+
- 技能使用範例
|
|
27
|
+
- 技能參考資料索引
|
|
28
|
+
對於技能有幫助的內但不符合上述技能架構規範,則應該被分類放置在`references/`下的markdown檔案。
|
|
29
|
+
|
|
30
|
+
## 範例
|
|
31
|
+
- "一個專注在提示LLM agent進行自我迭代,並為代碼庫帶來性能優化的技能需要被優化"-> "定義驗收條件為優化後性能相較優化前至少提升X個百分比,並且項目之中不存在任何O(n^2)級別時間複雜度的函式和邏輯,並按照標準架構重寫技能。"
|
|
32
|
+
- "一個有大量前端開發範例被包含在`SKILL.md`之中的前端開發技能需要被優化" -> "定義驗收條件為前端頁面`reference`之中提供的大量建議範例重寫且不包含任何建議示例之中明確拒絕的設計,然後按照技能優化流程對技能進行全面的重寫。"
|
|
33
|
+
|
|
34
|
+
## 參考資料
|
|
35
|
+
- `references/example_skill.md` - 優化後的技能範例
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
interface:
|
|
2
|
+
display_name: "Optimise Skill"
|
|
3
|
+
short_description: "Rewrite a SKILL.md into a leaner, higher-signal prompt"
|
|
4
|
+
default_prompt: "Use $optimise-skill to read the target skill and its supporting files, derive the intended deliverable plus acceptance criteria, then rewrite the skill into a tighter goal / acceptance criteria / workflow / examples / references structure without changing the final outcome."
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: optimise-skill
|
|
3
|
+
description: Use prompt engineering to optimise agent skill. Use it when you need to optimise a `SKILL.md`
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## 目標
|
|
7
|
+
在不影響被優化技能整體流程前提下,利用提示詞工程,對技能進行優化,減少冗余表達,增強agent對技能的理解能力以及實際工作中的使用效率。
|
|
8
|
+
|
|
9
|
+
## 驗收條件
|
|
10
|
+
- 被優化技能的最終交付產物不受影響
|
|
11
|
+
- 被優化技能有顯著冗余削減,且具備精確提示能力,盡最大可能釋放LLM的性能
|
|
12
|
+
|
|
13
|
+
## 工作流程
|
|
14
|
+
|
|
15
|
+
1. 識別交付物
|
|
16
|
+
完整閱讀整個技能的`SKILL.md`文檔,以及其引用的所有額檔案,包括但不限於`references/`, `scripts/`。基於獲取到的技能上下文資訊,總結出該技能的最終交付產物。
|
|
17
|
+
|
|
18
|
+
2. 制定驗收條件
|
|
19
|
+
制定驗收條件,從而確保LLM能夠穩定、可復現地按照驗收條件產出符合要求高質量最終交付物
|
|
20
|
+
|
|
21
|
+
3. 重寫技能
|
|
22
|
+
將整個技能的`SKILL.md`重寫。重寫後的技能應該只包含以下幾個關鍵組成部分:
|
|
23
|
+
- 技能目標
|
|
24
|
+
- 技能驗收條件
|
|
25
|
+
- 技能工作流程
|
|
26
|
+
- 技能使用範例
|
|
27
|
+
- 技能參考資料索引
|
|
28
|
+
對於技能有幫助的內但不符合上述技能架構規範,則應該被分類放置在`references/`下的markdown檔案。
|
|
29
|
+
|
|
30
|
+
## 範例
|
|
31
|
+
- "一個專注在提示LLM agent進行自我迭代,並為代碼庫帶來性能優化的技能需要被優化"-> "定義驗收條件為優化後性能相較優化前至少提升X個百分比,並且項目之中不存在任何O(n^2)級別時間複雜度的函式和邏輯,並按照標準架構重寫技能。"
|
|
32
|
+
- "一個有大量前端開發範例被包含在`SKILL.md`之中的前端開發技能需要被優化" -> "定義驗收條件為前端頁面`reference`之中提供的大量建議範例重寫且不包含任何建議示例之中明確拒絕的設計,然後按照技能優化流程對技能進行全面的重寫。"
|
|
33
|
+
|
|
34
|
+
## 參考資料
|
|
35
|
+
- `references/example_skill.md` - 優化後的技能範例
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|