diff --git a/.github/workflows/pr_name.yml b/.github/workflows/pr_name.yml index fd2e6321a..e50c99e78 100644 --- a/.github/workflows/pr_name.yml +++ b/.github/workflows/pr_name.yml @@ -8,7 +8,9 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Install Dependencies - run: npm install @commitlint/config-conventional - - uses: JulienKode/pull-request-name-linter-action@v0.5.0 + - uses: actions/checkout@v3 + - name: Install Dependencies + run: npm install @commitlint/config-conventional@16.0.0 + - uses: JulienKode/pull-request-name-linter-action@v0.5.0 + with: + configuration-path: tools/commitlint/commitlint.config.js diff --git a/docs/README.md b/docs/README.md index 7768f8657..47e2257ad 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,10 +1,13 @@ # 🌟 Welcome to TEN -Welcome to TEN! TEN stands for Transformative Extensions Network, an open-source framework for quickly creating multimodal AI agents. It features the all-in-one TEN Manager, written in Rust, supports multimodal protocols, includes the TEN Runtime, offers the Graph Designer, and has an Extension Store to share in community. +Welcome to TEN! TEN stands for Transformative Extensions Network, [ **an open-source framework** ](https://github.com/TEN-framework/ten_framework) for quickly creating multimodal AI agents. It features the all-in-one TEN Manager, written in Rust, supports multimodal protocols, includes the TEN Runtime, offers the Graph Designer, and has an Extension Store to share in community. Here, you’ll get an overview of all the incredible features TEN offers to help you build engaging and interactive experiences. -Before we get started, please click the [**star button on our GitHub repo**](https://github.com/rte-design/astra.ai) to stay updated with one of the AI agents powered by TEN. +Before we get started, please click the [**star button on our GitHub repo**](https://github.com/TEN-framework/ten_framework) to stay updated with TEN. + +TEN’s capabilities are immense, and we’ve harnessed its power to create a real-time multimodal agent that we actively maintain and support. You can explore this agent in our dedicated repository of [ **Astra Agent** ](https://github.com/ten-framework/astra.ai) We’d love to have your support, don’t forget to give it a star as well! +

Star us to stay updated with Astra Agent

diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index 32c85db02..233a248d4 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -5,7 +5,7 @@ * [Key Concepts](vision/key_concepts.md) * [Scenarios](vision/application_scenarios.md) -## Getting Started +## Getting Started with Astra * [Quickstart](getting_started/quickstart.md) * [Customize Agent](getting_started/customize_your_agent.md) diff --git a/tools/commitlint/commitlint.config.js b/tools/commitlint/commitlint.config.js new file mode 100644 index 000000000..84dcb122a --- /dev/null +++ b/tools/commitlint/commitlint.config.js @@ -0,0 +1,3 @@ +module.exports = { + extends: ['@commitlint/config-conventional'], +};