Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message
Agents
bitrix24/b24phpsdk
claude-code
cursor
php
rest
api
Bitrix24
Install
php artisan boost:add-skill bitrix24/b24phpsdk

Save this content to: AGENTS.md

---
package: bitrix24/b24phpsdk
source_path: AGENTS.md
repo: https://github.com/bitrix24/b24phpsdk
---

# Agent Rules

Rules that apply to all agent/skill work in this repository.

---

## CHANGELOG updates

**Rule**: every time a skill or agent file is updated (created, modified, or deleted),
add an entry to `CHANGELOG.md` under `## X.Y.Z Unreleased` → `### Changed`:

```markdown
### Changed
- Updated `b24phpsdk-maintainer` skill: <one-line description of what changed>
```

This applies to:
- `.claude/skills/**/*.md`
- `.claude/agents.md`
- Any other agent configuration file

Do not skip this step even for small edits.

## Required first skill

- For issue-related work in this repository, invoke `.claude/skills/b24phpsdk-maintainer/SKILL.md` first.
- This includes creating, reading, or updating GitHub issues, planning from an issue, referencing an issue in branches or commits, and any work touching changelog or release context.
- If other skills also apply to that work, use `b24phpsdk-maintainer` before them and then continue with the rest of the workflow.

## Issue language

- Every GitHub issue in `bitrix24/b24phpsdk` — title, body, and checklists — MUST be written in **English only**, regardless of the language used in conversation.
- Applies to creating new issues, updating existing issue bodies or titles, and posting issue comments.
- Translate content to English before writing to GitHub; do not mix languages inside a single issue. Proper nouns (method names, file paths, URLs) stay as-is.

## OpenAPI Schema
- Before implementing any task, refresh the local OpenAPI schema snapshot with `make oa-schema-build`.
- Treat `docs/open-api/openapi.json` as the repository baseline for current REST API research, implementation, and release-time verification.

## Coverage Tooling
- Inspect method coverage through the project CLI utilities exposed in `Makefile`, not by ad hoc manual counting.
- For SDK/live API coverage use the `make` targets that wrap the console commands.
- For OA-schema-based coverage use the dedicated `make` target once it is available in the repository.

## Microtask completion checks
- For small tasks that do not invoke `.claude/skills/b24phpsdk-maintainer/SKILL.md`, run `make lint-rector` before reporting the task as finished.
- If Rector fails, fix the reported issues and rerun `make lint-rector` until it passes.

## Post-push PR status

- After **every** `git push` to a branch that has an open Pull Request (including the initial push that creates the PR and every subsequent push to the same branch), poll the PR CI status until it reaches a terminal state.
- Use `mcp__github__get_pull_request_status` (fallback: `gh pr checks <number> --watch`). Recommended cadence: ~60 seconds between polls.
- Report the final CI state (success or failure, with the list of failed checks) back to the user. Do not consider the push done until CI is green or the failures have been surfaced.
- Full workflow lives in `.claude/skills/b24phpsdk-maintainer/SKILL.md` → section "Pushing to an existing PR branch" and steps 6–7 of "Creating a Pull Request after a green quality gate".

## Testing Conventions
- If a service exposes entity-returning `get` and/or `list` methods, add a separate integration test file dedicated to result-item phpdoc annotation validation.
- That dedicated test file must verify both contracts against live field metadata:
  - annotation completeness: all system fields returned by `fields()->getFieldsDescription()` are present in the result-item annotations
  - annotation type validity: annotated field types match Bitrix24 field types using the shared custom assertions
- Prefer one dedicated annotation test file per result-item class, separate from CRUD/use-case tests.
- Naming convention for these files/classes: suffix them with `AnnotationsTest`, for example `TaskItemResultAnnotationsTest.php`.
- Naming convention for test methods inside those files: keep the explicit prefixes `testAllSystemFieldsAnnotated` and `testAllSystemFieldsHasValidTypeAnnotation`.

package: bitrix24/b24phpsdk source_path: AGENTS.md repo: https://github.com/bitrix24/b24phpsdk

Agent Rules

Rules that apply to all agent/skill work in this repository.


CHANGELOG updates

Rule: every time a skill or agent file is updated (created, modified, or deleted), add an entry to CHANGELOG.md under ## X.Y.Z Unreleased### Changed:

### Changed
- Updated `b24phpsdk-maintainer` skill: <one-line description of what changed>

This applies to:

  • .claude/skills/**/*.md
  • .claude/agents.md
  • Any other agent configuration file

Do not skip this step even for small edits.

Required first skill

  • For issue-related work in this repository, invoke .claude/skills/b24phpsdk-maintainer/SKILL.md first.
  • This includes creating, reading, or updating GitHub issues, planning from an issue, referencing an issue in branches or commits, and any work touching changelog or release context.
  • If other skills also apply to that work, use b24phpsdk-maintainer before them and then continue with the rest of the workflow.

Issue language

  • Every GitHub issue in bitrix24/b24phpsdk — title, body, and checklists — MUST be written in English only, regardless of the language used in conversation.
  • Applies to creating new issues, updating existing issue bodies or titles, and posting issue comments.
  • Translate content to English before writing to GitHub; do not mix languages inside a single issue. Proper nouns (method names, file paths, URLs) stay as-is.

OpenAPI Schema

  • Before implementing any task, refresh the local OpenAPI schema snapshot with make oa-schema-build.
  • Treat docs/open-api/openapi.json as the repository baseline for current REST API research, implementation, and release-time verification.

Coverage Tooling

  • Inspect method coverage through the project CLI utilities exposed in Makefile, not by ad hoc manual counting.
  • For SDK/live API coverage use the make targets that wrap the console commands.
  • For OA-schema-based coverage use the dedicated make target once it is available in the repository.

Microtask completion checks

  • For small tasks that do not invoke .claude/skills/b24phpsdk-maintainer/SKILL.md, run make lint-rector before reporting the task as finished.
  • If Rector fails, fix the reported issues and rerun make lint-rector until it passes.

Post-push PR status

  • After every git push to a branch that has an open Pull Request (including the initial push that creates the PR and every subsequent push to the same branch), poll the PR CI status until it reaches a terminal state.
  • Use mcp__github__get_pull_request_status (fallback: gh pr checks <number> --watch). Recommended cadence: ~60 seconds between polls.
  • Report the final CI state (success or failure, with the list of failed checks) back to the user. Do not consider the push done until CI is green or the failures have been surfaced.
  • Full workflow lives in .claude/skills/b24phpsdk-maintainer/SKILL.md → section "Pushing to an existing PR branch" and steps 6–7 of "Creating a Pull Request after a green quality gate".

Testing Conventions

  • If a service exposes entity-returning get and/or list methods, add a separate integration test file dedicated to result-item phpdoc annotation validation.
  • That dedicated test file must verify both contracts against live field metadata:
    • annotation completeness: all system fields returned by fields()->getFieldsDescription() are present in the result-item annotations
    • annotation type validity: annotated field types match Bitrix24 field types using the shared custom assertions
  • Prefer one dedicated annotation test file per result-item class, separate from CRUD/use-case tests.
  • Naming convention for these files/classes: suffix them with AnnotationsTest, for example TaskItemResultAnnotationsTest.php.
  • Naming convention for test methods inside those files: keep the explicit prefixes testAllSystemFieldsAnnotated and testAllSystemFieldsHasValidTypeAnnotation.
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
emuniq/filament-browser-notifications
syriable/filament-translator
hungnm28/livewire-form
wenprise/eloquent
crudly/encrypted
fadion/bouncy
cuci/prototurk-sdk
gos/pubsub-router-bundle
cuci/prototurk-sdk-symfony
clementtalleu/easyadmin-markdown-bundle
codeflextech/permission-manager
karnoweb/livewire-datepicker
sayedenam/sayed-dashboard
milito/query-filter
apiboxsym/user-bundle
apiboxsym/health-check-bundle
jayeshmepani/jpl-moshier-ephemeris-php
elnasnato/laraliveui
labrodev/rest-sdk
sampaui/sampaui