oh-my-customcode 0.48.0 → 0.48.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/README.md +5 -5
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/skills/deep-verify/SKILL.md +19 -4
- package/templates/.claude/skills/professor-triage/SKILL.md +205 -0
- package/templates/CLAUDE.md +1 -1
- package/templates/guides/index.yaml +45 -0
- package/templates/guides/web-scraping/README.md +926 -0
- package/templates/guides/web-scraping/index.yaml +19 -0
- package/templates/manifest.json +3 -3
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Web Scraping Guide
|
|
2
|
+
|
|
3
|
+
metadata:
|
|
4
|
+
name: web-scraping
|
|
5
|
+
description: BeautifulSoup and Playwright patterns for reliable web scraping and government site parsing
|
|
6
|
+
|
|
7
|
+
source:
|
|
8
|
+
type: internal
|
|
9
|
+
|
|
10
|
+
topics:
|
|
11
|
+
- beautifulsoup-patterns
|
|
12
|
+
- playwright-navigation
|
|
13
|
+
- government-site-patterns
|
|
14
|
+
- smart-parser-design
|
|
15
|
+
- error-handling
|
|
16
|
+
- testing
|
|
17
|
+
|
|
18
|
+
used_by:
|
|
19
|
+
- lang-python-expert
|
package/templates/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.48.
|
|
2
|
+
"version": "0.48.2",
|
|
3
3
|
"lastUpdated": "2026-03-16T00:00:00.000Z",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"name": "skills",
|
|
19
19
|
"path": ".claude/skills",
|
|
20
20
|
"description": "Reusable skill modules (includes slash commands)",
|
|
21
|
-
"files":
|
|
21
|
+
"files": 85
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "guides",
|
|
25
25
|
"path": "guides",
|
|
26
26
|
"description": "Reference documentation",
|
|
27
|
-
"files":
|
|
27
|
+
"files": 29
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
"name": "hooks",
|