@laitszkin/apollo-toolkit 2.7.0 → 2.9.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.
Files changed (41) hide show
  1. package/AGENTS.md +4 -3
  2. package/CHANGELOG.md +13 -0
  3. package/README.md +5 -3
  4. package/analyse-app-logs/LICENSE +1 -1
  5. package/archive-specs/LICENSE +1 -1
  6. package/commit-and-push/LICENSE +1 -1
  7. package/develop-new-features/LICENSE +1 -1
  8. package/docs-to-voice/LICENSE +1 -1
  9. package/enhance-existing-features/LICENSE +1 -1
  10. package/feature-propose/LICENSE +1 -1
  11. package/generate-spec/LICENSE +1 -1
  12. package/learn-skill-from-conversations/LICENSE +1 -2
  13. package/lib/cli.js +4 -4
  14. package/lib/installer.js +6 -8
  15. package/novel-to-short-video/LICENSE +1 -1
  16. package/open-github-issue/LICENSE +1 -1
  17. package/open-github-issue/README.md +7 -1
  18. package/open-github-issue/SKILL.md +10 -3
  19. package/open-github-issue/scripts/open_github_issue.py +25 -0
  20. package/open-github-issue/tests/test_open_github_issue.py +49 -1
  21. package/open-source-pr-workflow/LICENSE +1 -1
  22. package/openai-text-to-image-storyboard/LICENSE +1 -1
  23. package/openclaw-configuration/SKILL.md +30 -2
  24. package/openclaw-configuration/references/best-practices.md +15 -0
  25. package/openclaw-configuration/references/config-reference-map.md +22 -0
  26. package/package.json +2 -2
  27. package/review-change-set/LICENSE +1 -1
  28. package/review-codebases/LICENSE +1 -1
  29. package/scheduled-runtime-health-check/README.md +26 -15
  30. package/scheduled-runtime-health-check/SKILL.md +70 -53
  31. package/scheduled-runtime-health-check/agents/openai.yaml +2 -2
  32. package/scripts/install_skills.ps1 +10 -17
  33. package/scripts/install_skills.sh +10 -10
  34. package/shadow-api-model-research/SKILL.md +114 -0
  35. package/shadow-api-model-research/agents/openai.yaml +4 -0
  36. package/shadow-api-model-research/references/fingerprinting-playbook.md +69 -0
  37. package/shadow-api-model-research/references/request-shape-checklist.md +44 -0
  38. package/systematic-debug/LICENSE +1 -1
  39. package/text-to-short-video/LICENSE +1 -1
  40. package/version-release/LICENSE +1 -1
  41. package/video-production/LICENSE +16 -13
@@ -0,0 +1,44 @@
1
+ # Request Shape Checklist
2
+
3
+ Use this checklist before claiming you understand how a gated endpoint is called.
4
+
5
+ ## 1. Capture setup
6
+
7
+ - Confirm which client will generate the traffic.
8
+ - Confirm the exact provider or model config that client is using.
9
+ - Route the client to a capture proxy, reverse proxy, or controlled upstream you can inspect.
10
+ - Freeze other moving parts when possible: same model, same prompt, same stream mode, same tool settings.
11
+
12
+ ## 2. What to record
13
+
14
+ - HTTP method
15
+ - URL path
16
+ - query string
17
+ - request headers
18
+ - body payload shape
19
+ - stream or SSE response framing
20
+ - request or response ids
21
+ - retries, reconnects, timeout handling, rebroadcast logic
22
+ - any provider-specific or model-specific metadata fields
23
+
24
+ ## 3. Environment and config evidence
25
+
26
+ - Save the effective client config that produced the capture.
27
+ - Save the exact env vars used for base URL, API key, and provider selection.
28
+ - When OpenClaw is involved, note the relevant `openclaw.json` keys and whether validation passed.
29
+
30
+ ## 4. Replay readiness gate
31
+
32
+ Do not write the replay script until you can answer all of these:
33
+
34
+ - Which fields are constant across repeated requests?
35
+ - Which fields change per request?
36
+ - Which fields come from auth or session state?
37
+ - Is the target using streaming?
38
+ - Is the target expecting OpenAI-compatible JSON or a client-specific variant?
39
+
40
+ ## 5. Replay result interpretation
41
+
42
+ - Success with cloned shape does not prove the model identity.
43
+ - Failure with cloned shape does not prove the headers are wrong; it may indicate entitlement or hidden session checks.
44
+ - If only some requests replay, compare stream mode, auth tokens, and subtle metadata differences before drawing conclusions.
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Lai Tsz Kin
3
+ Copyright (c) 2026 LaiTszKin
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 tszkinlai
3
+ Copyright (c) 2026 LaiTszKin
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Lai Tsz Kin
3
+ Copyright (c) 2026 LaiTszKin
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,18 +1,21 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Yamiyorunoshura
3
+ Copyright (c) 2026 LaiTszKin
4
4
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
- associated documentation files (the "Software"), to deal in the Software without restriction, including
7
- without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9
- following conditions:
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
10
11
 
11
- The above copyright notice and this permission notice shall be included in all copies or substantial
12
- portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
13
14
 
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16
- EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18
- USE OR OTHER DEALINGS IN THE SOFTWARE.
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.