[CI/CD] add cd#2
Merged
Merged
Conversation
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.
This pull request introduces initial project setup and automation for the CoinFello CLI skill, including configuration, documentation, and CI/CD workflows. The most significant changes establish automated testing and publishing pipelines, enforce code quality standards, and provide comprehensive documentation and scripts for users and developers.
CI/CD and Automation:
.github/workflows/ci.yml) to run type checks, linting, and formatting checks on every push and pull request, ensuring code quality and consistency..github/workflows/publish.yml) and the CoinFello skill (.github/workflows/publish-coinfello-skill.yml), automating version checks, changelog generation, and deployment to npm and ClawHub. [1] [2]Developer Tooling and Code Quality:
eslint.config.js,.prettierrc,.vscode/settings.json) and related scripts inpackage.jsonto enforce consistent code style and catch common errors. [1] [2] [3] [4]package.jsonwith scripts for linting, formatting, and type checking, and added relevant dev dependencies. [1] [2]Documentation and User Guidance:
coinfello/SKILL.md) and a comprehensive reference guide (coinfello/references/REFERENCE.md), covering commands, config schema, API endpoints, and error messages. [1] [2]coinfello/scripts/setup-and-send.sh) to automate the full workflow of account creation, sending prompts, and checking transaction status.Legal and Metadata:
LICENSE.md) and updated package metadata for publishing and licensing. [1] [2]Codebase Improvements:
src/account.tsfor improved type safety and readability, including stricter types for smart account creation and subdelegation logic. [1] [2]These changes lay the groundwork for a robust, maintainable, and well-documented CLI skill with automated quality checks and deployment pipelines.