agentsclimarketplace

Wp gravity wiz

Skill kylebrodeur/wordpress-agent-kit/skills/wp-gravity-wiz

WordPress-focused AGENTS.md + Agent Skills starter kit for AI coding agents.

Install
npx -y skills add kylebrodeur/wordpress-agent-kit --skill wp-gravity-wiz

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when working with Gravity Wiz products: installing or managing Spellbook (the Gravity Wiz platform), Gravity Perks (48+ form enhancement plugins like GP Populate Anything, Nested Forms, Limit Submissions), or any individual perk. Also use for Gravity Shop (WooCommerce integration).

The file declares its own license as GPL-2.0-or-later. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

5.2 KB, as published. Nobody here has run it

Gravity Wiz — Spellbook, Perks & Extensions

Gravity Wiz makes the Gravity ecosystem: Spellbook (unified platform), Gravity Perks (48+ form enhancements), Gravity Connect (external service integrations), and Gravity Shop (WooCommerce). All products install and update through Spellbook.

When to use

  • Installing or activating Spellbook and any Gravity Wiz product
  • Working with Gravity Perks (GP Populate Anything, Nested Forms, Limit Submissions, etc.)
  • Upgrading from legacy Gravity Perks individual installers to Spellbook
  • Troubleshooting perk conflicts or perk-specific settings
  • Setting up GP Populate Anything for AI-driven dynamic form population
  • Managing licenses from account.gravitywiz.com

Official documentation

ResourceURL
Spellbook docshttps://gravitywiz.com/documentation/spellbook/
Gravity Perks docshttps://gravitywiz.com/documentation/gravity-perks/
Gravity Connect docshttps://gravitywiz.com/documentation/gravity-connect/
Gravity Shop docshttps://gravitywiz.com/documentation/gravity-shop-product-configurator/
Available perks listhttps://gravitywiz.com/available-perks/
Snippet libraryhttps://gravitywiz.com/snippet-library/
Account dashboardhttps://account.gravitywiz.com/
Downloadshttps://account.gravitywiz.com/downloads
Supporthttps://gravitywiz.com/support/
FAQhttps://gravitywiz.com/documentation/gravity-perks-account-faq/
License FAQhttps://gravitywiz.com/documentation/license-faq/

GitHub

RepoPurpose
gravitywiz/snippet-library1000+ hooks and filters — excellent for AI training context

Procedure

1) Install Spellbook (the platform — install first)

All Gravity Wiz products install through Spellbook:

  1. Download from: https://gravitywiz.com/download/spellbook
    (or from account: https://account.gravitywiz.com/downloads)
  2. Install:
wp plugin install path/to/spellbook.zip --activate
  1. Activate your license in wp-admin: Spellbook → Account
  2. Spellbook auto-deactivates legacy Gravity Perks if it was installed.

2) Install individual products/perks

From wp-admin: Spellbook → Perks (or Connect or Shop):

  • Browse or search products
  • Click Activate — Spellbook handles download and activation automatically

For CLI/automated installs after Spellbook is active:

# Spellbook manages its own update mechanism — use the UI or its WP-CLI integration
wp plugin list | grep gp-  # list installed perks

3) Key Perks for AI workflows

PerkPurposeDocs
GP Populate AnythingDynamic field population from posts, users, terms, or external APIshttps://gravitywiz.com/documentation/gravity-forms-populate-anything/
GP Nested FormsEmbed a child form inside a parent form (repeatable sections)https://gravitywiz.com/documentation/gravity-forms-nested-forms/
GP Limit SubmissionsPrevent spam/abuse by capping submissions per periodhttps://gravitywiz.com/documentation/gravity-forms-limit-submissions/
GP Advanced SelectSearch-and-select (powered by Choice.js) for large AI-generated listshttps://gravitywiz.com/documentation/gravity-forms-advanced-select/
GP Live PreviewReal-time field-value preview before submissionhttps://gravitywiz.com/documentation/gravity-forms-live-preview/
GP Copy CatCopy field values between fields automaticallyhttps://gravitywiz.com/documentation/gravity-forms-copy-cat/

4) GP Populate Anything + AI feeds

Combine with Gravity Connect for dynamic AI-driven form population:

// Filter Populate Anything query before form renders
add_filter('gppa_query_args', function($args, $field, $form) {
    // Inject AI-generated constraints into the population query
    if ($field->id === 5) {
        $args['meta_query'][] = [
            'key'   => 'ai_category',
            'value' => 'featured',
        ];
    }
    return $args;
}, 10, 3);

5) Reduce memory footprint for LLM loops

Spellbook uses code deduplication across all perks, reducing PHP memory usage compared to individual perk installs. This matters during memory-intensive LLM/API execution loops triggered via Gravity Connect.

# Verify Spellbook is active (not legacy Gravity Perks)
wp plugin status spellbook
wp plugin status gravityperks  # should show as inactive/not installed

6) Hide perks from Plugins page (optional)

// Keep wp-admin Plugins page clean (perks still update normally)
add_filter('gp_hide_perks_from_plugins_page', '__return_true');

References

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.