-
-
Notifications
You must be signed in to change notification settings - Fork 34
🔧 update: dependencies and improve commit workflow configuration #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
warengonzaga
wants to merge
40
commits into
main
Choose a base branch
from
dev
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
2453218
⚙️ setup: add contributor configuration for clean commit workflow
warengonzaga 0df6164
☕ chore: bump wgtechlabs/container-build-flow-action from 1.3.1 to 1.…
dependabot[bot] 1964d85
☕ chore: bump github/codeql-action from 4.32.4 to 4.32.5 (#42)
dependabot[bot] 9a48480
☕ chore: bump oven/bun from 1.3.9-slim to 1.3.10-slim (#41)
dependabot[bot] 9682500
☕ chore: remove contribute now config
warengonzaga 03522e0
📖 docs (readme): add contributing section and update formatting
warengonzaga e13910c
☕ chore (deps): bump biome to 2.4.6 and update type definitions
warengonzaga 1bfd8b4
🔧 update (delegation): improve queue error handling in background runner
warengonzaga b5030e2
🔧 update: fix plugin system issues and add improvements
warengonzaga fade9ae
📦 new (landing): add favicon and web manifest
warengonzaga 8641ee7
🔧 update (landing): rebrand theme colors and add logo animations
warengonzaga fcbf927
🔧 update (landing): replace emoji with Tiny Claw logo image
warengonzaga 314209f
🔧 update (web): update app styles
warengonzaga b27966d
⚙️ setup (ci): improve container workflow with commit convention and …
warengonzaga 93816ae
📦 new (telegram): add telegram channel plugin
warengonzaga 8525e0f
☕ chore: add gitattributes to enforce lf line endings
warengonzaga 20d489f
📦 new (provider): add Ollama provider plugin with model pairing and c…
warengonzaga c29afaf
🔧 update (ci): upgrade package publish action and enable bot detection
warengonzaga 097faa2
☕ chore: Bump vite from 7.3.1 to 8.0.0 (#58)
dependabot[bot] c4ea71f
☕ chore: Bump github/codeql-action from 4.32.5 to 4.33.0 (#57)
dependabot[bot] 6a600ba
☕ chore: Bump docker/setup-qemu-action from 3 to 4 (#53)
dependabot[bot] a88d402
☕ chore: Bump wgtechlabs/release-build-flow-action from 1.6.0 to 1.7.…
dependabot[bot] 3d92455
☕ chore: Bump actions/setup-node from 6.2.0 to 6.3.0 (#51)
dependabot[bot] ade1023
☕ chore: Bump oven/bun from 1.3.10-slim to 1.3.11-slim (#59)
dependabot[bot] 2cef636
☕ chore: Bump nick-fields/retry from 3 to 4 (#60)
dependabot[bot] 1168acf
☕ chore: Bump wgtechlabs/package-build-flow-action from 2.1.0 to 2.1.…
dependabot[bot] 44c5e8b
☕ chore: Bump typescript from 5.9.3 to 6.0.2 (#63)
dependabot[bot] 79c2d2c
☕ chore: Bump github/codeql-action from 4.33.0 to 4.35.1 (#64)
dependabot[bot] 23a6fc7
☕ chore: Bump actions/deploy-pages from 4.0.5 to 5.0.0 (#65)
dependabot[bot] ce4ef05
☕ chore: Bump wgtechlabs/container-build-flow-action from 1.7.0 to 1.…
dependabot[bot] abc457d
🔧 update: extend SecretsManager, agent loop, and CLI commands (#66)
warengonzaga dfedff2
🔧 update (deps): upgrade typescript to v6 and vite to v8
warengonzaga 63f67f1
🔧 update (logger): update logger implementation
warengonzaga 43c50dc
🔧 update (core): update loop logic and add tests
warengonzaga d1c6b53
🔧 update (cli): update secrets utility and start command tests
warengonzaga 7fde6f5
🔧 update (docker): add telegram, ollama, and landing packages
warengonzaga 3fe82e7
📦 new (types): add owner-only tools for providers and plugin management
warengonzaga 046823f
🔒 security (cli): require explicit confirmation before installing com…
warengonzaga ebbb9ea
🔧 update (ci): skip publish and container build steps on pull requests
warengonzaga 45251ef
🔧 update (landing): wrap logo in button element for accessibility
warengonzaga File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| { | ||
| "workflow": "clean-flow", | ||
| "role": "maintainer", | ||
| "mainBranch": "main", | ||
| "devBranch": "dev", | ||
| "upstream": "upstream", | ||
| "origin": "origin", | ||
| "branchPrefixes": [ | ||
| "feature", | ||
| "fix", | ||
| "docs", | ||
| "chore", | ||
| "test", | ||
| "refactor" | ||
| ], | ||
| "commitConvention": "clean-commit" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| # Auto-detect text files and normalize line endings to LF | ||
| * text=auto eol=lf | ||
|
|
||
| # Explicitly declare text files | ||
| *.ts text eol=lf | ||
| *.tsx text eol=lf | ||
| *.js text eol=lf | ||
| *.jsx text eol=lf | ||
| *.json text eol=lf | ||
| *.md text eol=lf | ||
| *.yml text eol=lf | ||
| *.yaml text eol=lf | ||
| *.toml text eol=lf | ||
| *.env text eol=lf | ||
| *.sh text eol=lf | ||
|
|
||
| # Declare binary files | ||
| *.png binary | ||
| *.jpg binary | ||
| *.jpeg binary | ||
| *.gif binary | ||
| *.ico binary | ||
| *.woff binary | ||
| *.woff2 binary | ||
| *.ttf binary | ||
| *.otf binary | ||
| *.eot binary |
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,4 +42,7 @@ coverage/ | |
| # Misc | ||
| *.bak | ||
| *.tmp | ||
| docs/**.* | ||
| docs/**.* | ||
|
|
||
| # Contribute Now | ||
| .contributerc.json | ||
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.