From 7997c06059777a6cbd3a836f11c2cfc015c80c16 Mon Sep 17 00:00:00 2001 From: harshitha-cstk Date: Fri, 10 Apr 2026 13:25:47 +0530 Subject: [PATCH] Remove references section from multiple SKILL.md files to streamline documentation. --- skills/code-review/SKILL.md | 6 ------ skills/contentstack-utils/SKILL.md | 6 ------ skills/dev-workflow/SKILL.md | 6 ------ skills/php-style/SKILL.md | 5 ----- skills/testing/SKILL.md | 5 ----- 5 files changed, 28 deletions(-) diff --git a/skills/code-review/SKILL.md b/skills/code-review/SKILL.md index 811ad3a..1ddf02a 100644 --- a/skills/code-review/SKILL.md +++ b/skills/code-review/SKILL.md @@ -26,9 +26,3 @@ description: Use when reviewing or preparing a PR — tests, style, SemVer, docs - **Blocker:** Breaks tests, CI, or documented security/policy requirements. - **Major:** Missing tests for non-trivial logic, public API breakage without version strategy, or policy violations (e.g. wrong base branch). - **Minor:** Style nits, naming, or internal refactors with no contract change. - -## References - -- [`CONTRIBUTING.md`](../../CONTRIBUTING.md) -- [`PULL_REQUEST_TEMPLATE.md`](../../PULL_REQUEST_TEMPLATE.md) -- [`dev-workflow/SKILL.md`](../dev-workflow/SKILL.md) diff --git a/skills/contentstack-utils/SKILL.md b/skills/contentstack-utils/SKILL.md index 234e472..9e3a0db 100644 --- a/skills/contentstack-utils/SKILL.md +++ b/skills/contentstack-utils/SKILL.md @@ -34,9 +34,3 @@ description: Use when changing Utils, GQL, BaseParser, models, enums, or embed/r - This package does not ship HTTP calls; consumers fetch data with the Contentstack PHP SDK or other clients and pass strings/objects into `Utils` / `GQL`. - Prefer backward-compatible changes to public method signatures; follow SemVer. - -## References - -- [`testing/SKILL.md`](../testing/SKILL.md) -- [`php-style/SKILL.md`](../php-style/SKILL.md) -- [Product README — usage](../../README.md) diff --git a/skills/dev-workflow/SKILL.md b/skills/dev-workflow/SKILL.md index e772790..f922a99 100644 --- a/skills/dev-workflow/SKILL.md +++ b/skills/dev-workflow/SKILL.md @@ -36,9 +36,3 @@ description: Use when running Composer, CI, or PRs to master/next — installs, ### Releases / versioning - Project follows SemVer per [`CONTRIBUTING.md`](../../CONTRIBUTING.md); public API changes belong in changelog/release notes as the maintainers require. - -## References - -- [`AGENTS.md`](../../AGENTS.md) -- [`testing/SKILL.md`](../testing/SKILL.md) -- [`php-style/SKILL.md`](../php-style/SKILL.md) diff --git a/skills/php-style/SKILL.md b/skills/php-style/SKILL.md index cf4cf18..41f9d90 100644 --- a/skills/php-style/SKILL.md +++ b/skills/php-style/SKILL.md @@ -30,8 +30,3 @@ description: Use when applying PSR-2, running PHPCS, or matching src/tests layou ### Strict typing - New PHP files in `src/` should use `declare(strict_types=1);` consistently with existing classes. - -## References - -- [`dev-workflow/SKILL.md`](../dev-workflow/SKILL.md) -- [PSR-2 coding style guide](https://www.php-fig.org/psr/psr-2/) diff --git a/skills/testing/SKILL.md b/skills/testing/SKILL.md index d041a38..ca2a69e 100644 --- a/skills/testing/SKILL.md +++ b/skills/testing/SKILL.md @@ -33,8 +33,3 @@ description: Use when writing PHPUnit tests, mocks under tests/Mock, or coverage ### Credentials - Tests use mocks and fixtures; do not add real API keys or stack secrets to the repo. - -## References - -- [`dev-workflow/SKILL.md`](../dev-workflow/SKILL.md) -- [`contentstack-utils/SKILL.md`](../contentstack-utils/SKILL.md)