diff --git a/examples/05_skills_and_plugins/03_managing_installed_skills/main.py b/examples/05_skills_and_plugins/03_managing_installed_skills/main.py index b30f7c4f5a..23dd702d3f 100644 --- a/examples/05_skills_and_plugins/03_managing_installed_skills/main.py +++ b/examples/05_skills_and_plugins/03_managing_installed_skills/main.py @@ -9,7 +9,7 @@ 5. Uninstall a skill while leaving other installed skills available For marketplace installation flows, see: -`examples/01_standalone_sdk/43_mixed_marketplace_skills/`. +`examples/05_skills_and_plugins/05_mixed_marketplace_skills/`. """ import json diff --git a/examples/01_standalone_sdk/43_mixed_marketplace_skills/.plugin/marketplace.json b/examples/05_skills_and_plugins/05_mixed_marketplace_skills/.plugin/marketplace.json similarity index 100% rename from examples/01_standalone_sdk/43_mixed_marketplace_skills/.plugin/marketplace.json rename to examples/05_skills_and_plugins/05_mixed_marketplace_skills/.plugin/marketplace.json diff --git a/examples/01_standalone_sdk/43_mixed_marketplace_skills/README.md b/examples/05_skills_and_plugins/05_mixed_marketplace_skills/README.md similarity index 98% rename from examples/01_standalone_sdk/43_mixed_marketplace_skills/README.md rename to examples/05_skills_and_plugins/05_mixed_marketplace_skills/README.md index 723229412f..a2d9c430fd 100644 --- a/examples/01_standalone_sdk/43_mixed_marketplace_skills/README.md +++ b/examples/05_skills_and_plugins/05_mixed_marketplace_skills/README.md @@ -16,7 +16,7 @@ This pattern is useful when you want to: ## Directory Structure ``` -43_mixed_marketplace_skills/ +05_skills_and_plugins/05_mixed_marketplace_skills/ ├── .plugin/ │ └── marketplace.json # Marketplace configuration ├── skills/ diff --git a/examples/01_standalone_sdk/43_mixed_marketplace_skills/main.py b/examples/05_skills_and_plugins/05_mixed_marketplace_skills/main.py similarity index 98% rename from examples/01_standalone_sdk/43_mixed_marketplace_skills/main.py rename to examples/05_skills_and_plugins/05_mixed_marketplace_skills/main.py index b833752198..e640bb2881 100644 --- a/examples/01_standalone_sdk/43_mixed_marketplace_skills/main.py +++ b/examples/05_skills_and_plugins/05_mixed_marketplace_skills/main.py @@ -14,7 +14,7 @@ - Create a curated skill set for their specific workflows Directory Structure: - 43_mixed_marketplace_skills/ + 05_skills_and_plugins/05_mixed_marketplace_skills/ ├── .plugin/ │ └── marketplace.json # Marketplace with local and remote skills ├── skills/ diff --git a/examples/01_standalone_sdk/43_mixed_marketplace_skills/skills/greeting-helper/SKILL.md b/examples/05_skills_and_plugins/05_mixed_marketplace_skills/skills/greeting-helper/SKILL.md similarity index 100% rename from examples/01_standalone_sdk/43_mixed_marketplace_skills/skills/greeting-helper/SKILL.md rename to examples/05_skills_and_plugins/05_mixed_marketplace_skills/skills/greeting-helper/SKILL.md diff --git a/tests/examples/test_examples.py b/tests/examples/test_examples.py index 82b94fc46b..82950d7ac6 100644 --- a/tests/examples/test_examples.py +++ b/tests/examples/test_examples.py @@ -29,7 +29,7 @@ EXAMPLES_ROOT / "01_standalone_sdk" / "33_hooks", EXAMPLES_ROOT / "01_standalone_sdk" / "37_llm_profile_store", EXAMPLES_ROOT / "01_standalone_sdk" / "51_agent_hooks", - EXAMPLES_ROOT / "01_standalone_sdk" / "43_mixed_marketplace_skills", + EXAMPLES_ROOT / "05_skills_and_plugins" / "05_mixed_marketplace_skills", EXAMPLES_ROOT / "02_remote_agent_server" / "06_custom_tool", EXAMPLES_ROOT / "05_skills_and_plugins" / "01_loading_agentskills", EXAMPLES_ROOT / "05_skills_and_plugins" / "02_loading_plugins",