mirror of
https://github.com/agentrhq/authsome.git
synced 2026-09-19 01:34:19 +08:00
8dc663e21e
- Add ADR-0003: proxy unmatched requests pass through in local mode - Add docs/agents/ guidance files (domain, issue-tracker, triage-labels) - Add "Composition over inheritance" principle to AGENTS.md and CONTRIBUTING.md - Fix AGENTS.md Architecture section: remove "Identity = Profile", update AuthService constructor (vault_id/principal_id), fix storage key patterns to vault:<vault_id>:..., add five-registry model description - Update UBIQUITOUS_LANGUAGE.md: retire Profile term, add Principal, PrincipalId, VaultId, VaultHandle, IdentityClaimRecord, ClaimStatus, PrincipalVaultBindingRecord, ActiveIdentity, StorageSubstrate, StorageNamespace, SecretSource, Repository; update Relationships and Example dialogue to reflect Principal/Vault model - Add docs/refactor.md: storage composition refactor plan (Phases 1-9); mark Principal/Vault/Claim architecture as implemented, keep open storage phases Note: the feature/principal-vault-identity-design branch adds docs/adr/0003-principal-owned-vault.md — that file must be renamed to 0004-principal-owned-vault.md before that PR merges to avoid collision with the new ADR-0003 added here. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Entire-Checkpoint: c7b941617a23
1.0 KiB
1.0 KiB
Issue tracker: GitHub
Issues and PRDs for this repo live as GitHub issues. Use the gh CLI for all operations.
Conventions
- Create an issue:
gh issue create --title "..." --body "...". Use a heredoc for multi-line bodies. - Read an issue:
gh issue view <number> --comments, filtering comments byjqand also fetching labels. - List issues:
gh issue list --state open --json number,title,body,labels,comments --jq '[.[] | {number, title, body, labels: [.labels[].name], comments: [.comments[].body]}]'with appropriate--labeland--statefilters. - Comment on an issue:
gh issue comment <number> --body "..." - Apply / remove labels:
gh issue edit <number> --add-label "..."/--remove-label "..." - Close:
gh issue close <number> --comment "..."
Infer the repo from git remote -v — gh does this automatically when run inside a clone.
When a skill says "publish to the issue tracker"
Create a GitHub issue.
When a skill says "fetch the relevant ticket"
Run gh issue view <number> --comments.