opencode-skills-antigravity 1.0.11 → 1.0.13

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 (33) hide show
  1. package/bundled-skills/aegisops-ai/SKILL.md +127 -0
  2. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  3. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  4. package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
  5. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  6. package/bundled-skills/docs/users/bundles.md +1 -1
  7. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  8. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  9. package/bundled-skills/docs/users/getting-started.md +1 -1
  10. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  11. package/bundled-skills/docs/users/usage.md +4 -4
  12. package/bundled-skills/docs/users/visual-guide.md +4 -4
  13. package/bundled-skills/snowflake-development/SKILL.md +228 -0
  14. package/bundled-skills/wordpress/SKILL.md +281 -4
  15. package/bundled-skills/wordpress-penetration-testing/SKILL.md +106 -1
  16. package/bundled-skills/wordpress-plugin-development/SKILL.md +296 -3
  17. package/bundled-skills/wordpress-theme-development/SKILL.md +316 -3
  18. package/bundled-skills/wordpress-woocommerce-development/SKILL.md +442 -2
  19. package/bundled-skills/xvary-stock-research/LICENSE +21 -0
  20. package/bundled-skills/xvary-stock-research/SKILL.md +103 -0
  21. package/bundled-skills/xvary-stock-research/assets/nvda-deep-dive-hero.png +0 -0
  22. package/bundled-skills/xvary-stock-research/assets/nvda-deep-dive-scenarios.png +0 -0
  23. package/bundled-skills/xvary-stock-research/assets/nvda-deep-dive-thesis.png +0 -0
  24. package/bundled-skills/xvary-stock-research/assets/social-preview.png +0 -0
  25. package/bundled-skills/xvary-stock-research/examples/nvda-analysis.md +60 -0
  26. package/bundled-skills/xvary-stock-research/references/edgar-guide.md +53 -0
  27. package/bundled-skills/xvary-stock-research/references/methodology.md +153 -0
  28. package/bundled-skills/xvary-stock-research/references/scoring.md +111 -0
  29. package/bundled-skills/xvary-stock-research/tests/test_edgar.py +90 -0
  30. package/bundled-skills/xvary-stock-research/tests/test_market.py +113 -0
  31. package/bundled-skills/xvary-stock-research/tools/edgar.py +495 -0
  32. package/bundled-skills/xvary-stock-research/tools/market.py +302 -0
  33. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: wordpress-theme-development
3
- description: "WordPress theme development workflow covering theme architecture, template hierarchy, custom post types, block editor support, and responsive design."
3
+ description: "WordPress theme development workflow covering theme architecture, template hierarchy, custom post types, block editor support, responsive design, and WordPress 7.0 features: DataViews, Pattern Editing, Navigation Overlays, and admin refresh."
4
4
  category: granular-workflow-bundle
5
5
  risk: safe
6
6
  source: personal
@@ -11,7 +11,37 @@ date_added: "2026-02-27"
11
11
 
12
12
  ## Overview
13
13
 
14
- Specialized workflow for creating custom WordPress themes from scratch, including modern block editor (Gutenberg) support, template hierarchy, and responsive design.
14
+ Specialized workflow for creating custom WordPress themes from scratch, including modern block editor (Gutenberg) support, template hierarchy, responsive design, and WordPress 7.0 enhancements.
15
+
16
+ ## WordPress 7.0 Theme Features
17
+
18
+ 1. **Admin Refresh**
19
+ - New default color scheme
20
+ - View transitions between admin screens
21
+ - Modern typography and spacing
22
+
23
+ 2. **Pattern Editing**
24
+ - ContentOnly mode defaults for unsynced patterns
25
+ - `disableContentOnlyForUnsyncedPatterns` setting
26
+ - Per-block instance custom CSS
27
+
28
+ 3. **Navigation Overlays**
29
+ - Customizable navigation overlays
30
+ - Improved mobile navigation
31
+
32
+ 4. **New Blocks**
33
+ - Icon block
34
+ - Breadcrumbs block with filters
35
+ - Responsive grid block
36
+
37
+ 5. **Theme.json Enhancements**
38
+ - Pseudo-element support
39
+ - Block-defined feature selectors honored
40
+ - Enhanced custom CSS
41
+
42
+ 6. **Iframed Editor**
43
+ - Block API v3+ enables iframed post editor
44
+ - Full enforcement in 7.1, opt-in in 7.0
15
45
 
16
46
  ## When to Use This Workflow
17
47
 
@@ -21,6 +51,7 @@ Use this workflow when:
21
51
  - Adding block editor support
22
52
  - Implementing custom post types
23
53
  - Building child themes
54
+ - Implementing WordPress 7.0 design features
24
55
 
25
56
  ## Workflow Phases
26
57
 
@@ -37,6 +68,24 @@ Use this workflow when:
37
68
  4. Configure theme support
38
69
  5. Set up enqueue scripts/styles
39
70
 
71
+ #### WordPress 7.0 Theme Header
72
+ ```css
73
+ /*
74
+ Theme Name: My Custom Theme
75
+ Theme URI: https://example.com
76
+ Author: Developer Name
77
+ Author URI: https://example.com
78
+ Description: A WordPress 7.0 compatible theme with modern design
79
+ Version: 1.0.0
80
+ Requires at least: 6.0
81
+ Requires PHP: 7.4
82
+ License: GNU General Public License v2
83
+ License URI: https://www.gnu.org/licenses/gpl-2.0.html
84
+ Text Domain: my-custom-theme
85
+ Tags: block-patterns, block-styles, editor-style, wide-blocks
86
+ */
87
+ ```
88
+
40
89
  #### Copy-Paste Prompts
41
90
  ```
42
91
  Use @app-builder to scaffold a new WordPress theme project
@@ -55,6 +104,11 @@ Use @app-builder to scaffold a new WordPress theme project
55
104
  5. Add archive.php for archives
56
105
  6. Implement search.php and 404.php
57
106
 
107
+ #### WordPress 7.0 Template Considerations
108
+ - Test with iframed editor
109
+ - Verify view transitions work
110
+ - Check new admin color scheme compatibility
111
+
58
112
  #### Copy-Paste Prompts
59
113
  ```
60
114
  Use @frontend-developer to create WordPress template files
@@ -72,6 +126,66 @@ Use @frontend-developer to create WordPress template files
72
126
  4. Create custom template tags
73
127
  5. Implement helper functions
74
128
 
129
+ #### WordPress 7.0 theme.json Configuration
130
+ ```json
131
+ {
132
+ "$schema": "https://schemas.wp.org/trunk/theme.json",
133
+ "version": 3,
134
+ "settings": {
135
+ "appearanceTools": true,
136
+ "layout": {
137
+ "contentSize": "1200px",
138
+ "wideSize": "1400px"
139
+ },
140
+ "background": {
141
+ "backgroundImage": true
142
+ },
143
+ "typography": {
144
+ "fontFamilies": true,
145
+ "fontSizes": true
146
+ },
147
+ "spacing": {
148
+ "margin": true,
149
+ "padding": true
150
+ },
151
+ "blocks": {
152
+ "core/heading": {
153
+ "typography": {
154
+ "fontSizes": ["24px", "32px", "48px"]
155
+ }
156
+ }
157
+ }
158
+ },
159
+ "styles": {
160
+ "color": {
161
+ "background": "#ffffff",
162
+ "text": "#1a1a1a"
163
+ },
164
+ "elements": {
165
+ "link": {
166
+ "color": {
167
+ "text": "#0066cc"
168
+ }
169
+ }
170
+ }
171
+ },
172
+ "customTemplates": [
173
+ {
174
+ "name": "page-home",
175
+ "title": "Homepage",
176
+ "postTypes": ["page"]
177
+ }
178
+ ],
179
+ "templateParts": [
180
+ {
181
+ "name": "header",
182
+ "title": "Header",
183
+ "area": "header"
184
+ }
185
+ ]
186
+ }
187
+ ```
188
+
75
189
  #### Copy-Paste Prompts
76
190
  ```
77
191
  Use @backend-dev-guidelines to create theme functions
@@ -89,6 +203,29 @@ Use @backend-dev-guidelines to create theme functions
89
203
  4. Implement custom fields
90
204
  5. Create archive templates
91
205
 
206
+ #### RTC-Compatible CPT Registration
207
+ ```php
208
+ register_post_type('portfolio', [
209
+ 'labels' => [
210
+ 'name' => __('Portfolio', 'my-theme'),
211
+ 'singular_name' => __('Portfolio Item', 'my-theme')
212
+ ],
213
+ 'public' => true,
214
+ 'has_archive' => true,
215
+ 'show_in_rest' => true, // Enable for RTC
216
+ 'supports' => ['title', 'editor', 'thumbnail', 'excerpt', 'custom-fields'],
217
+ 'menu_icon' => 'dashicons-portfolio',
218
+ ]);
219
+
220
+ // Register meta for collaboration
221
+ register_post_meta('portfolio', 'client_name', [
222
+ 'type' => 'string',
223
+ 'single' => true,
224
+ 'show_in_rest' => true,
225
+ 'sanitize_callback' => 'sanitize_text_field',
226
+ ]);
227
+ ```
228
+
92
229
  #### Copy-Paste Prompts
93
230
  ```
94
231
  Use @wordpress-penetration-testing to understand WordPress CPT patterns
@@ -106,6 +243,72 @@ Use @wordpress-penetration-testing to understand WordPress CPT patterns
106
243
  4. Add block patterns
107
244
  5. Configure block templates
108
245
 
246
+ #### WordPress 7.0 Block Features
247
+ - Block API v3 is reference model
248
+ - PHP-only block registration
249
+ - Per-instance custom CSS
250
+ - Block visibility controls (viewport-based)
251
+
252
+ #### Block Pattern with ContentOnly (WP 7.0)
253
+ ```json
254
+ {
255
+ "name": "my-theme/hero-section",
256
+ "title": "Hero Section",
257
+ "contentOnly": true,
258
+ "content": [
259
+ {
260
+ "name": "core/cover",
261
+ "attributes": {
262
+ "url": "{{hero_image}}",
263
+ "overlay": "black",
264
+ "dimRatio": 50
265
+ },
266
+ "innerBlocks": [
267
+ {
268
+ "name": "core/heading",
269
+ "attributes": {
270
+ "level": 1,
271
+ "textAlign": "center",
272
+ "content": "{{hero_title}}"
273
+ }
274
+ },
275
+ {
276
+ "name": "core/paragraph",
277
+ "attributes": {
278
+ "align": "center",
279
+ "content": "{{hero_description}}"
280
+ }
281
+ }
282
+ ]
283
+ }
284
+ ]
285
+ }
286
+ ```
287
+
288
+ #### Navigation Overlay Template Part
289
+ ```php
290
+ // template-parts/header-overlay.php
291
+ ?>
292
+ <nav class="header-navigation-overlay" aria-label="<?php esc_attr_e('Overlay Menu', 'my-theme'); ?>">
293
+ <button class="overlay-close" aria-label="<?php esc_attr_e('Close menu', 'my-theme'); ?>">
294
+ <span class="close-icon" aria-hidden="true">
295
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
296
+ <line x1="18" y1="6" x2="6" y2="18"></line>
297
+ <line x1="6" y1="6" x2="18" y2="18"></line>
298
+ </svg>
299
+ </span>
300
+ </button>
301
+ <?php
302
+ wp_nav_menu([
303
+ 'theme_location' => 'primary',
304
+ 'container' => false,
305
+ 'menu_class' => 'overlay-menu',
306
+ 'fallback_cb' => false,
307
+ ]);
308
+ ?>
309
+ </nav>
310
+ ```
311
+
109
312
  #### Copy-Paste Prompts
110
313
  ```
111
314
  Use @frontend-developer to create custom Gutenberg blocks
@@ -124,12 +327,92 @@ Use @frontend-developer to create custom Gutenberg blocks
124
327
  4. Implement theme customizer
125
328
  5. Add accessibility features
126
329
 
330
+ #### WordPress 7.0 Admin Refresh Considerations
331
+ ```css
332
+ /* Support new admin color scheme */
333
+ @media (prefers-color-scheme: dark) {
334
+ :root {
335
+ --admin-color: modern;
336
+ }
337
+ }
338
+
339
+ /* View transitions */
340
+ .wp-admin {
341
+ view-transition-name: none;
342
+ }
343
+
344
+ body {
345
+ view-transition-name: page;
346
+ }
347
+ ```
348
+
349
+ #### CSS Custom Properties (WP 7.0)
350
+ ```css
351
+ :root {
352
+ /* New DataViews colors */
353
+ --wp-dataviews-color-background: #ffffff;
354
+ --wp-dataviews-color-border: #e0e0e0;
355
+
356
+ /* Navigation overlay */
357
+ --wp-overlay-menu-background: #1a1a1a;
358
+ --wp-overlay-menu-text: #ffffff;
359
+ }
360
+ ```
361
+
127
362
  #### Copy-Paste Prompts
128
363
  ```
129
364
  Use @frontend-design to create responsive theme design
130
365
  ```
131
366
 
132
- ### Phase 7: Testing
367
+ ### Phase 7: WordPress 7.0 Features Integration
368
+
369
+ #### Breadcrumbs Block Support
370
+ ```php
371
+ // Add breadcrumb filters for custom post types
372
+ add_filter('wp_breadcrumb_args', function($args) {
373
+ $args['separator'] = '<span class="breadcrumb-separator"> / </span>';
374
+ $args['before'] = '<nav class="breadcrumb" aria-label="Breadcrumb">';
375
+ $args['after'] = '</nav>';
376
+ return $args;
377
+ });
378
+
379
+ // Add custom breadcrumb trail for CPT
380
+ add_action('breadcrumb_items', function($trail, $crumbs) {
381
+ if (is_singular('portfolio')) {
382
+ $portfolio_page = get_page_by_path('portfolio');
383
+ if ($portfolio_page) {
384
+ array_splice($trail->crumbs, 1, 0, [
385
+ [
386
+ 'title' => get_the_title($portfolio_page),
387
+ 'url' => get_permalink($portfolio_page)
388
+ ]
389
+ ]);
390
+ }
391
+ }
392
+ }, 10, 2);
393
+ ```
394
+
395
+ #### Icon Block Support
396
+ ```php
397
+ // Add custom icons for Icon block via pattern category
398
+ add_action('init', function() {
399
+ register_block_pattern_category('my-theme/icons', [
400
+ 'label' => __('Theme Icons', 'my-theme'),
401
+ 'description' => __('Custom icons for use in the Icon block', 'my-theme'),
402
+ ]);
403
+ });
404
+
405
+ // For actual SVG icons in the Icon block, use block.json or PHP registration
406
+ add_action('init', function() {
407
+ register_block_pattern('my-theme/custom-icons', [
408
+ 'title' => __('Custom Icon Set', 'my-theme'),
409
+ 'categories' => ['my-theme/icons'],
410
+ 'content' => '<!-- Pattern content with Icon blocks -->'
411
+ ]);
412
+ });
413
+ ```
414
+
415
+ ### Phase 8: Testing
133
416
 
134
417
  #### Skills to Invoke
135
418
  - `playwright-skill` - Browser testing
@@ -142,6 +425,14 @@ Use @frontend-design to create responsive theme design
142
425
  4. Check accessibility
143
426
  5. Performance testing
144
427
 
428
+ #### WordPress 7.0 Testing Checklist
429
+ - [ ] Test with iframed editor
430
+ - [ ] Verify view transitions
431
+ - [ ] Check admin color scheme
432
+ - [ ] Test navigation overlays
433
+ - [ ] Verify contentOnly patterns
434
+ - [ ] Test breadcrumbs on CPT archives
435
+
145
436
  #### Copy-Paste Prompts
146
437
  ```
147
438
  Use @playwright-skill to test WordPress theme
@@ -164,7 +455,15 @@ theme-name/
164
455
  ├── 404.php
165
456
  ├── comments.php
166
457
  ├── template-parts/
458
+ │ ├── header/
459
+ │ ├── footer/
460
+ │ ├── navigation/
461
+ │ └── content/
462
+ ├── patterns/ # Block patterns (WP 7.0)
463
+ ├── templates/ # Site editor templates
167
464
  ├── inc/
465
+ │ ├── class-theme.php
466
+ │ └── supports.php
168
467
  ├── assets/
169
468
  │ ├── css/
170
469
  │ ├── js/
@@ -172,6 +471,19 @@ theme-name/
172
471
  └── languages/
173
472
  ```
174
473
 
474
+ ## WordPress 7.0 Theme Checklist
475
+
476
+ - [ ] PHP 7.4+ requirement documented
477
+ - [ ] theme.json v3 schema used
478
+ - [ ] Block patterns tested
479
+ - [ ] ContentOnly editing supported
480
+ - [ ] Navigation overlays implemented
481
+ - [ ] Breadcrumb filters added for CPT
482
+ - [ ] View transitions working
483
+ - [ ] Admin refresh compatible
484
+ - [ ] CPT meta shows_in_rest
485
+ - [ ] Iframe editor tested
486
+
175
487
  ## Quality Gates
176
488
 
177
489
  - [ ] All templates working
@@ -180,6 +492,7 @@ theme-name/
180
492
  - [ ] Accessibility checked
181
493
  - [ ] Performance optimized
182
494
  - [ ] Cross-browser tested
495
+ - [ ] WordPress 7.0 compatibility verified
183
496
 
184
497
  ## Related Workflow Bundles
185
498