@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.
- package/AGENTS.md +4 -3
- package/CHANGELOG.md +13 -0
- package/README.md +5 -3
- package/analyse-app-logs/LICENSE +1 -1
- package/archive-specs/LICENSE +1 -1
- package/commit-and-push/LICENSE +1 -1
- package/develop-new-features/LICENSE +1 -1
- package/docs-to-voice/LICENSE +1 -1
- package/enhance-existing-features/LICENSE +1 -1
- package/feature-propose/LICENSE +1 -1
- package/generate-spec/LICENSE +1 -1
- package/learn-skill-from-conversations/LICENSE +1 -2
- package/lib/cli.js +4 -4
- package/lib/installer.js +6 -8
- package/novel-to-short-video/LICENSE +1 -1
- package/open-github-issue/LICENSE +1 -1
- package/open-github-issue/README.md +7 -1
- package/open-github-issue/SKILL.md +10 -3
- package/open-github-issue/scripts/open_github_issue.py +25 -0
- package/open-github-issue/tests/test_open_github_issue.py +49 -1
- package/open-source-pr-workflow/LICENSE +1 -1
- package/openai-text-to-image-storyboard/LICENSE +1 -1
- package/openclaw-configuration/SKILL.md +30 -2
- package/openclaw-configuration/references/best-practices.md +15 -0
- package/openclaw-configuration/references/config-reference-map.md +22 -0
- package/package.json +2 -2
- package/review-change-set/LICENSE +1 -1
- package/review-codebases/LICENSE +1 -1
- package/scheduled-runtime-health-check/README.md +26 -15
- package/scheduled-runtime-health-check/SKILL.md +70 -53
- package/scheduled-runtime-health-check/agents/openai.yaml +2 -2
- package/scripts/install_skills.ps1 +10 -17
- package/scripts/install_skills.sh +10 -10
- package/shadow-api-model-research/SKILL.md +114 -0
- package/shadow-api-model-research/agents/openai.yaml +4 -0
- package/shadow-api-model-research/references/fingerprinting-playbook.md +69 -0
- package/shadow-api-model-research/references/request-shape-checklist.md +44 -0
- package/systematic-debug/LICENSE +1 -1
- package/text-to-short-video/LICENSE +1 -1
- package/version-release/LICENSE +1 -1
- 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.
|
package/systematic-debug/LICENSE
CHANGED
package/version-release/LICENSE
CHANGED
package/video-production/LICENSE
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026
|
|
3
|
+
Copyright (c) 2026 LaiTszKin
|
|
4
4
|
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
associated documentation files (the "Software"), to deal
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
|
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
|
|
15
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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.
|