docs(agent-bases): clarify APIFY_TOKEN, add Playwright MCP and CLI search#766
Merged
Conversation
…arch - Add Apify Platform Environment section noting that APIFY_TOKEN (not APIFY_API_TOKEN) is auto-available on the platform and read by the SDK. - Promote MCP section to a parent with Apify MCP and Playwright MCP subsections; document Playwright MCP as a debugging tool with install instructions. - Document `apify actors search` for discovering community Actors before building from scratch. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Add the most important commands developers need when building Actors: bootstrap (create/init), local dev (run/validate-schema), auth/account (login/logout/info), deployment & remote execution (push/pull/call/build, runs ls), discovery (actors search/info), secrets (referenced via "@name" in actor.json), and direct API access (apify api). The ts variant also documents `apify actor generate-schema-types`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Merged
3 tasks
pull Bot
pushed a commit
to jinzaizhichi/agent-skills
that referenced
this pull request
May 12, 2026
…ization Aligns the Actor development and Actorization skills with apify/actor-templates#766: expanded CLI command reference (including Apify Store discovery via `apify actors search`), an `APIFY_TOKEN` clarification, and an MCP tools section that adds Playwright MCP for debugging. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
szaganek
approved these changes
May 13, 2026
Contributor
szaganek
left a comment
There was a problem hiding this comment.
I'd just add verbs for the sake of consistency.
Co-authored-by: Edyta <142720610+szaganek@users.noreply.github.com>
Member
|
this might have broken the e2e tests, we need to reformat the files https://github.com/apify/actor-templates/actions/runs/25835443656/job/75909415900 i wonder why this didnt pop in the CI checks directly edit: i guess because we dont check formatting globally and only inside the templates, so when you add the "agents file templates", they are not checked, then they are propagated to each template and that breaks the CI tests. we should check the formatting in a regular PR check too. |
B4nan
added a commit
that referenced
this pull request
May 14, 2026
## Summary Adds `prettier --check` to the lint/test workflow. Today, formatting drift in shared files (notably the `agent-bases/*.AGENTS.md` source-of-truth that gets fanned out into every template's `AGENTS.md`) only surfaces *after* merge, when the per-template e2e checks fire — see the post-merge comment on #766. This PR adds the check **only**; the resulting CI failure is intentional and demonstrates the gap. A follow-up commit on the same branch will reformat the offending files so the check goes green. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Member
|
Handled via #769 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
APIFY_TOKEN(notAPIFY_API_TOKEN) when running on the platform, and is read by the SDK automatically.Apify MCPandPlaywright MCP (debugging)subsections; Playwright MCP includes both theclaude mcp addone-liner and a JSON config snippet.apify actors search "<query>" --user-agent <your-agent-name>for discovering community Actors before building from scratch.Changes applied consistently to
python.AGENTS.md,js.AGENTS.md, andts.AGENTS.md.Test plan
🤖 Generated with Claude Code