{"id":22558886,"url":"https://github.com/lnxpy/notio","last_synced_at":"2026-02-10T02:02:40.382Z","repository":{"id":264653244,"uuid":"893782165","full_name":"lnxpy/notio","owner":"lnxpy","description":"🧠 Hashnode Post-Publication LLM Toolkit Built with Hypermode","archived":false,"fork":false,"pushed_at":"2025-01-30T21:59:47.000Z","size":174,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T19:53:25.381Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://blog.imsadra.me/notio-hashnode-post-publication-llm-toolkit","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lnxpy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-25T07:49:19.000Z","updated_at":"2025-01-30T20:44:16.000Z","dependencies_parsed_at":"2025-01-30T19:21:41.738Z","dependency_job_id":"5d518e25-8405-47a3-b0be-127f63974240","html_url":"https://github.com/lnxpy/notio","commit_stats":null,"previous_names":["lnxpy/notio"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lnxpy/notio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnxpy%2Fnotio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnxpy%2Fnotio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnxpy%2Fnotio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnxpy%2Fnotio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lnxpy","download_url":"https://codeload.github.com/lnxpy/notio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnxpy%2Fnotio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29288733,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T21:57:15.303Z","status":"online","status_checked_at":"2026-02-10T02:00:07.935Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-07T20:17:43.257Z","updated_at":"2026-02-10T02:02:40.368Z","avatar_url":"https://github.com/lnxpy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![banner](media/notio.svg)\n\n## NotioAI\nNotio is a CI automated LLM toolkit that gets triggered when a [Hashnode](https://hashnode.com) article gets published/modified. With the help of this pipeline, you can..\n\n- Share the translated version of a newly published Hashnode article.\n- Generate questions about the article and push it to GitHub.\n- Create an abstraction from the article.\n- Simplify the article and share it in a Markdown file on GitHub.\n\n\u003e [!TIP]\n\u003e Read [this article](https://blog.imsadra.me/notio-hashnode-post-publication-llm-toolkit) about the development process and full potential of this CI action.\n\n### Setup\nFollow these steps to enable Notio for your Hashnode blog.\n\n#### Enable the backup feature\nOn your Hashnode dashboard, enable the backup feature. This way, Hashnode will push any change you make on your articles.\n\n#### Deploy a personal Hypermode instance\nClone [this Hypermode sample instance](http://github.com/lnxpy/notio-model) and [deploy](https://docs.hypermode.com/deploy) a personal instance for yourself. Then in the dashboard, grab the endpoint URL and take the API Token from the settings.\n\n#### Create secrets\nWhen Hashnode backup is enabled, you can see there is a repository created on your GitHub account called `hashnode`. Navigate to that repository, go to \"**Settings**\" \u003e \"**Secrets and variables**\" \u003e \"**Actions**\" and create the following secrets.\n\n- `HYPERMODE_ENDPOINT_URL`: The endpoint URL taken from the Hypermode dashboard.\n- `HYPERMODE_API_TOKEN`: The API token taken from the Hypermode dashboard settings.\n\n### Usage\nIn the Hashnode backup repository, create the `.github/notio-ci.yml` file and paste the following workflow settings there.\n\n```yml\nname: Notio LLM CI\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n\n    name: Running the action\n    steps:\n      - name: checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n```\n\nNow, use one of the following steps to configure your workflow and satisfy your needs.\n\n#### `translate-article`: Article translation\n\u003e Grabs the article and translates it into another language.\n```yml\n- name: Running Notio\n  uses: lnxpy/notio@v1\n  with:\n    method: translate-article\n    path: dutch/\n    translate_to: Dutch\n    hypermode_endpoint: ${{ secrets.HYPERMODE_ENDPOINT }}\n    hypermode_api_token: ${{ secrets.HYPERMODE_API_TOKEN }}\n```\n\n#### `generate-questions`: Question generation\n\u003e Grabs the article and generates questions about the article.\n```yml\n- name: Running Notio\n  uses: lnxpy/notio@v1\n  with:\n    method: generate-questions\n    path: questions/\n    question_limit: 10\n    include_answers: false\n    hypermode_endpoint: ${{ secrets.HYPERMODE_ENDPOINT }}\n    hypermode_api_token: ${{ secrets.HYPERMODE_API_TOKEN }}\n```\n\n#### `abstract-article`: Article abstraction\n\u003e Grabs the article and generates an abstraction.\n\n```yml\n- name: Running Notio\n  uses: lnxpy/notio@v1\n  with:\n    method: abstract-article\n    path: abstractions/\n    hypermode_endpoint: ${{ secrets.HYPERMODE_ENDPOINT }}\n    hypermode_api_token: ${{ secrets.HYPERMODE_API_TOKEN }}\n```\n\n#### `simplify-article`: Article simplification\n\u003e Grabs the article and simplifies it.\n\n```yml\n- name: Running Notio\n  uses: lnxpy/notio@v1\n  with:\n    method: simplify-article\n    path: simplified_articles/\n    hypermode_endpoint: ${{ secrets.HYPERMODE_ENDPOINT }}\n    hypermode_api_token: ${{ secrets.HYPERMODE_API_TOKEN }}\n```\n\n#### Commit changes\nAt the end of your workflow, don't forget to add this action usage. It simply commits the generated article into the repository.\n```yml\n- name: Commiting\n  uses: EndBug/add-and-commit@v9\n  with:\n    default_author: github_actions\n    message: 'article updated'\n```\n\n### Tech Stacks\n- [PyAction](https://pyaction.imsadra.me)\n- [Hypermode](https://hypermode.com/)\n- Modus CLI\n\n### Running Locally\nIf you want to run this action locally, follow these steps.\n\n* Clone the repo and `cd` into it.\n* Run `uv sync --no-install-project --extra cli`.\n* Create the `.env` file filled with the required input parameters.\n* Run `uv run pyaction run`.\n\n\u003e [!TIP]\n\u003e Check out [this guide](https://pyaction.imsadra.me/docs/concepts/local-running) if you need more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flnxpy%2Fnotio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flnxpy%2Fnotio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flnxpy%2Fnotio/lists"}