chore: automated agent rules drift update#36
Merged
Conversation
Adds subdirectory AGENTS.md files for packages/core, packages/sdk/typescript, packages/sdk/python, site, and workflows, plus .claude/rules/ entries for TypeScript ESM import conventions and httpapi test style. Generated by the AgentWorkforce/workflows repeatable/maintain-agent-rules workflow. See the PR description for the full drift report that drove these changes.
khaliqgant
added a commit
that referenced
this pull request
Apr 14, 2026
Automated drift edits to AGENTS.md produced by the AgentWorkforce/workflows repeatable/maintain-agent-rules workflow. Companion to #36 (which added subdirectory AGENTS.md and .claude/rules/ entries). This PR covers drift in the root AGENTS.md only.
khaliqgant
added a commit
that referenced
this pull request
Apr 14, 2026
Automated drift edits to AGENTS.md produced by the AgentWorkforce/workflows repeatable/maintain-agent-rules workflow. Companion to #36 (which added subdirectory AGENTS.md and .claude/rules/ entries). This PR covers drift in the root AGENTS.md only.
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.
Rules Drift Report
Summary
Drift per file
AGENTS.md
Usage,Recording Decisions,Recording Reflections,Completing Work, andCompacting Trajectoriessections still map to currenttrailsubcommands..claude/rules/*.md.CLAUDE.md
trailguidance asAGENTS.mdand does not reference removed files, stale commands, or broken links..claude/rules/*.mdfiles.New rules to add
/Users/khaliqgant/Projects/AgentWorkforce/relayfile/packages/core/AGENTS.md
packages/corepure and interface-driven; never add runtime I/O or concrete storage backends in this package.packages/core/src/index.tssays"Pure functions. No I/O. No runtime dependencies. Storage is injected via the StorageAdapter interface.";packages/core/package.jsonuses"build": "tsc"and"test": "vitest run"./Users/khaliqgant/Projects/AgentWorkforce/relayfile/packages/sdk/typescript/AGENTS.md
packages/sdk/typescript/package.jsonsets"type": "module"withbuild,typecheck, andtestscripts;packages/sdk/typescript/src/index.tscentralizes exports;packages/sdk/typescript/src/client.test.tsusesvitest./Users/khaliqgant/Projects/AgentWorkforce/relayfile/packages/sdk/python/AGENTS.md
src/relayfile/__init__.py, and in sync between sync and async client surfaces.packages/sdk/python/src/relayfile/__init__.pyre-exports the package surface;packages/sdk/python/src/relayfile/client.pydefines sync and async token providers plus retry helpers;packages/sdk/python/tests/test_client.pyusespytest,pytest-asyncio, andrespx;packages/sdk/python/pyproject.tomldeclares those dev dependencies./Users/khaliqgant/Projects/AgentWorkforce/relayfile/site/AGENTS.md
site/CONTENT.mdas the source for copy and keep components presentational.site/src/pages/index.astroreads../../CONTENT.mdwithfs.readFileSync(...);site/src/components/Hero.astrodefines typedPropsand renders fromAstro.props;site/package.jsonusesastroandtailwindcss./Users/khaliqgant/Projects/AgentWorkforce/relayfile/workflows/AGENTS.md
@agent-relay/sdk/workflowsstyle with explicit metadata, deterministic steps, and non-zero exit handling.workflows/relayfile-ci-and-publish.tsstarts with a run header, usesworkflow(...),.pattern('dag'),.channel(...), agents, and deterministiccaptureOutputsteps;workflows/sdk-reorg.tsfollows the same builder pattern and ends withmain().catch(...)./Users/khaliqgant/Projects/AgentWorkforce/relayfile/.claude/rules/typescript-esm.md
.jsextensions in TypeScript relative imports and keep package export barrels updated whenever public modules change.packages/core/src/index.tsexports./files.js,./acl.js, and other.jspaths;packages/sdk/typescript/src/client.tsimports./types.jsand./errors.js;packages/sdk/typescript/src/index.tscentralizes the SDK export surface./Users/khaliqgant/Projects/AgentWorkforce/relayfile/.claude/rules/go-httpapi-tests.md
internal/httpapitests as table-driven tests witht.Parallel()on the parent test and independent subtests.internal/httpapi/auth_test.gouses table rows plust.Parallel()in the parent test and subtests;internal/httpapi/acl_test.gofollows the same pattern withtests := []struct { ... }and parallel subtests.