Why: ADR-0015 established that Microsoft APM (apm.yml + .apm/) should replace this repo's hand-authored plugin.json/marketplace.json model, with those files becoming compiled output of `apm pack` instead of files edited by hand via the (now-retired) plugin-author/marketplace-author skills. Issue #90 was the deferred execution of that decision, gated on #88 (apm tooling) and #89 (apm-native agent-author/skill-author routing). Implementation notes: - All six plugins (bin, core, git, gitea, kyberforge, lint) now carry apm.yml + .apm/{skills,agents,hooks} as their authoring source. Skills moved with a plain git mv (content-identical across targets). Agents were re-authored, not moved: per ADR-0016, .apm/agents/*.agent.md compiles verbatim to both Claude and Copilot, so plugin-scope agents now carry only name/description/model/source_keys -- no tools: field, no Claude-only knobs (isolation, maxTurns, effort, memory, permissionMode). - Root apm.yml registers all 7 marketplace packages (6 local plus mattpocock-skills as a remote entry) under versioning: per_package, matching this repo's existing independent-plugin-versioning practice. - .claude-plugin/marketplace.json and every plugin's plugin.json are now apm-pack-compiled output, verified against the prior hand-maintained content: same names/descriptions/versions/licenses/authors, only cosmetic serialization differences (JSON key order, owner email vs. url, Unicode escaping). - plugin-author and marketplace-author are retired now that apm-based authoring fully replaces their job; kyberforge bumped 1.3.1 -> 1.4.0 for that removal, and the root marketplace catalog bumped 0.3.1 -> 0.3.2 to match, per the version-bump convention now documented in apm-workflow's reference docs instead of a dedicated script (apm has no native version-bump automation). - Fixed hardcoded pre-.apm/ path assumptions across .pre-commit-config.yaml, .pre-commit-hooks.yaml, scripts/check-scope-walkup-sync.sh, scripts/sync-vale-styles.sh, scripts/check-vale-style-sync.sh, six plugins' root plugin.json (stale skills/hooks/agents pointer fields that check-manifests.sh validates), and several tests/*.bats and tests/*.sh fixtures -- including a bats REPO_ROOT relative-path depth bug (10 files, one extra .apm/ directory level to walk up) and a vale probe-path isolation regression introduced mid-fix. - Corrected empirically-wrong assumptions surfaced this session in apm-workflow/apm-install's own reference docs: `apm marketplace package add` does not accept local paths (only owner/repo remote shorthand -- local packages are registered by editing apm.yml's marketplace.packages[] directly); `apm compile` is a consumer-side AGENTS.md/CLAUDE.md generator, not the plugin.json producer, and hard-fails on skill/agent-only packages without --clean; `apm plugin init <name>` nests a stray subdirectory when run with a positional name arg from inside a same-named directory; no native Copilot marketplace output profile exists; .mcp.json is merged into the compiled plugin.json content-aware and target-scoped, with no dependencies.mcp entry needed for simple passthrough; pipx is the correct pip fallback on externally-managed Python environments. - Renamed agent-author's copilot.agent.md template asset to copilot.agent.md.template so apm compile's recursive *.agent.md glob stops misparsing the placeholder template as a real agent primitive. Impact: plugin.json and marketplace.json are compiled artifacts from here on -- editing them by hand is no longer the workflow; edit apm.yml/.apm/ and run apm pack. CONTEXT.md's Plugin/Plugin marketplace glossary entries reflect this. ADR-0001 is marked superseded, ADR-0006 moot, and ADR-0010 updated for the new .apm/agents/ path (project/user scope unaffected, per ADR-0016). Full local verification: claude plugin validate --strict on all 6 plugins, apm audit --ci, apm marketplace check, check-manifests.sh, and the full test suite (165/165 bats, 13/13 shell scripts) all pass clean. Fixes: #90 Refs: #88, #89 ADR: 0015 ADR: 0016 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ub96PyaSRD9BHPktotj1pC
7.3 KiB
7.3 KiB
name, description, compatibility, metadata, allowed-tools
| name | description | compatibility | metadata | allowed-tools | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| gitea-files | Use when reading or writing individual files or directory trees in a Gitea repository via the Gitea MCP server: reading a file's contents, listing a directory, walking a full repository tree, creating a new file, updating an existing file, or deleting a file. Triggers on "read this file from the repo", "what's in this directory", "show me the repo tree", "create/update a file in Gitea", "commit this file to the branch", "delete this file from the repo" — even when the user doesn't say "Gitea" explicitly, as long as the target is a Gitea-hosted repository. Do not use for local filesystem file operations (use Read/Write/Edit), for branch or commit history (use gitea-branches), or for opening a pull request around a file change (use gitea-prs after the file write completes here). | Requires the Gitea MCP server configured with a token scoped to at least write:repository. Tested with a token holding write:issue + write:repository; write:issue is not actually required for any of this domain's five tools. |
|
mcp__gitea__get_file_contents mcp__gitea__get_dir_contents mcp__gitea__get_repository_tree mcp__gitea__create_or_update_file mcp__gitea__delete_file |
Gotchas
- A 404 from any read call may actually be a 403 in disguise.
get_file_contents,get_dir_contents, andget_repository_treeall gate onwrite:repositoryscope, not just read access — some Gitea endpoints return 404 instead of 403 when the token's scope is insufficient, to avoid leaking whether the resource exists. If a read fails with 404 on a path you're confident is correct, check the token's configured scopes before concluding the file or directory doesn't exist. - SHA is the concurrency token for every write — and it lives at the top level of
get_file_contents's response, not nested undercontent.create_or_update_filewithoutshais always treated as a create: if the path already exists, Gitea returns HTTP 409.delete_filehas no optional path at all — omittingshareturns HTTP 422. The safe sequence for any update or delete is always: callget_file_contentsfirst, read the top-levelshafield, then pass that exact value to the write call. Never guess or reuse a stale SHA — a mismatched SHA is rejected the same as a missing one. - A write can also fail because the branch requires signed commits — a separate failure mode from a bad SHA.
create_or_update_fileanddelete_filecreate commits server-side via a bare API token call with no 2FA/PGP context. If the target branch's protection rule requires signed commits, Gitea rejects the write outright — surfaced as a generic 403 or 422, not an error naming "signed commit required," and reads against that same branch keep succeeding right up until you try to write. When a write fails without a clean 409 (missing/stale SHA) or 404 (bad path) explanation, check whether the branch's protection rule requires signed commits before assuming the SHA is wrong and retrying. - A large
create_or_update_filepayload can hit a reverse-proxy 413 that has nothing to do with Gitea.contentis base64-encoded, which inflates the payload ~33% over the raw file size; a 413 is commonly a reverse-proxy body-size limit in front of the Gitea instance, not a Gitea-side rejection. No amount of retrying, or changing the SHA, path, or branch, will fix it — it needs the proxy's config raised, which is outside this skill's or the calling agent's control. Surface that distinction to the user instead of retrying the same call. get_dir_contentsandget_repository_treeare not SHA sources for a specific file's write.get_dir_contentsentries carry noshaat all.get_repository_treeentries do carry asha(a blob/tree hash), but fetching it means an extra round trip with no content —get_file_contentsis the canonical path since it returns the decoded content and the write-readyshain one call.ownerandrepoare always caller-supplied inputs, never resolved here. This skill doesn't infer them from a git remote. If invoked directly by a human, ask for them if not stated. If invoked bygitea-workflowor an orchestrating agent, expect them to already be resolved and passed in.- Direct commits to a branch are a first-class action, not a workaround. Gitea's own web UI defaults to editing files directly against a branch —
create_or_update_file/delete_fileused that way is normal, not an API escape hatch to avoid. The SHA-currency requirement above is the actual risk to manage, not the act of committing directly. ref(reads) vs.branch_name(writes) are different parameters for the same concept.get_file_contents,get_dir_contents, andget_repository_tree(astree_sha) all accept a branch name, tag, or commit SHA to select what to read.create_or_update_fileanddelete_fileinstead takebranch_name— the branch the commit lands on. Don't conflate the two when chaining a read into a write.- Content is base64.
create_or_update_file'scontentparameter is base64-encoded file content, not raw text — encode before calling.get_file_contents's response content is likewise base64-encoded (decode after reading), unlesswithLines: trueis passed for a numbered-line view.
Reading
- Single file:
get_file_contents(owner, repo, ref, path). PasswithLines: trueonly when you need line numbers for referencing specific lines (e.g. quoting a snippet back to the user); omit it for a normal content fetch. - One directory level:
get_dir_contents(owner, repo, ref, path)— returns immediate entries only (name, path, type, size), no recursion, no SHA, no content. - Whole tree:
get_repository_tree(owner, repo, tree_sha, recursive)—tree_shaaccepts a SHA, branch, or tag name despite the name. Setrecursive: trueto walk subdirectories in one call. Response includestruncated: truewhen a page doesn't hold every entry — page through withpage/per_page(defaultpage: 1,per_page: 30) until you get fewer results thanper_page.
Writing
- Creating a new file: call
create_or_update_file(owner, repo, path, content, message, branch_name)withshaomitted entirely. - Updating an existing file: call
get_file_contents(owner, repo, ref: branch_name, path)first, take the top-levelsha, then callcreate_or_update_file(..., sha: <that value>). - Deleting a file: call
get_file_contentsfirst the same way, thendelete_file(owner, repo, path, message, branch_name, sha: <that value>)—shais required, no create-style fallback exists. - Creating a new branch as part of the write: pass
new_branch_nameoncreate_or_update_fileto branch off before the commit lands, instead of calling a separate branch-creation step.
If the change needs review before merging, or targets a protected branch, hand off to gitea-prs after the write lands here to open the pull request — this skill's scope ends at the commit.
If you need the full multi-call sequence rather than the single-call summary above — e.g. branching off as part of a file push ahead of opening a PR, or recovering a SHA you didn't capture earlier — read references/examples.md.