alpha
Login
or
Join now
thunfisch987.eurosky.social
/
tangled-cli-fork
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
WIP: A simple cli for daily tangled use cases and AI integration. This is for my personal use right now, but happy if others get mileage from it! :)
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
tangled-cli-fork
/
src
/
lib
/
at
main
8 files
Oliver Sader
add repo create
2mo ago
bee05bab
.gitkeep
add repo create
2 months ago
api-client.ts
add repo create
2 months ago
config.ts
Implement configuration management with precedence Add config system for persisting user preferences: - Load config with precedence: TANGLED_REMOTE env var > local .tangledrc > user ~/.tangledrc > system /etc/tangledrc - Uses cosmiconfig for flexible config file support - setLocalRemote/setUserRemote: Save remote selection - clearLocalRemote/clearUserRemote: Clear saved remote - Integrates with Git to save local config in repository root This allows users to configure their preferred remote once and have it automatically selected for ambiguous cases. Includes comprehensive test coverage (16 tests) for all precedence scenarios and error cases. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5 months ago
constellation.ts
Add constellation.ts client for cross-PDS record indexing Introduces getBacklinks() which queries constellation.microcosm.blue to find AT Protocol records that reference a given URI, across all PDSs. This is the foundation for fixing multi-collaborator issue queries. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5 months ago
context.ts
Add biome v2 and apply format/lint changes.
5 months ago
issues-api.ts
Use constellation to get issue state across all collaborator PDSs getIssueState() now queries constellation.microcosm.blue for all state records that reference an issue, fetches each one via getRecord, and sorts by rkey (TID) to find the most recent. This allows collaborators to close/reopen issues from their own PDS, fixing the old approach that only ever saw the issue author's state records. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5 months ago
repos-api.ts
add repo create
2 months ago
session.ts
Move session metadata from keychain to plain file to prevent credential loss The current-session-metadata keychain entry was getting wiped by transient errors (e.g. network failure on wake) in the resumeSession() catch block, forcing users to re-authenticate unnecessarily. Changes: - Store session metadata in ~/.config/tangled/session.json (not keychain) so it survives sleep/wake cycles and keychain lock events - Don't clear metadata on transient agent.resumeSession() failures — only clear when loadSession() definitively returns null (no stored credentials) - Update session.test.ts to mock node:fs/promises with in-memory storage - Update api-client.test.ts to reflect new non-clearing behavior Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
5 months ago