Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions skills/code-review/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 0 additions & 6 deletions skills/contentstack-utils/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 0 additions & 6 deletions skills/dev-workflow/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
5 changes: 0 additions & 5 deletions skills/php-style/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
5 changes: 0 additions & 5 deletions skills/testing/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)