{"id":17449794,"url":"https://github.com/guillempuche/effect_docs_for_chatgpt","last_synced_at":"2026-06-23T22:02:53.007Z","repository":{"id":244864826,"uuid":"816503382","full_name":"guillempuche/effect_docs_for_chatgpt","owner":"guillempuche","description":"A convenient repository to convert into comprehensive PDFs the Effect documentation, and the guides and examples of the official Effect repo and Effect HTTP. Optimized for ChatGPT integration.","archived":false,"fork":false,"pushed_at":"2024-07-13T12:22:56.000Z","size":12842,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-16T04:02:37.169Z","etag":null,"topics":["chatgpt","chatgpt-plugin","deno","effect","effect-http","effect-schema","effect-ts"],"latest_commit_sha":null,"homepage":"https://chatgpt.com/g/g-9phxaKORM-effectjs-docs","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/guillempuche.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-06-17T22:23:09.000Z","updated_at":"2024-07-13T12:22:59.000Z","dependencies_parsed_at":"2024-10-20T17:18:59.989Z","dependency_job_id":null,"html_url":"https://github.com/guillempuche/effect_docs_for_chatgpt","commit_stats":null,"previous_names":["guillempuche/effectjs_docs_for_chatgpt","guillempuche/effect_docs_for_chatgpt"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/guillempuche/effect_docs_for_chatgpt","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillempuche%2Feffect_docs_for_chatgpt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillempuche%2Feffect_docs_for_chatgpt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillempuche%2Feffect_docs_for_chatgpt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillempuche%2Feffect_docs_for_chatgpt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guillempuche","download_url":"https://codeload.github.com/guillempuche/effect_docs_for_chatgpt/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillempuche%2Feffect_docs_for_chatgpt/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270982204,"owners_count":24679449,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"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":["chatgpt","chatgpt-plugin","deno","effect","effect-http","effect-schema","effect-ts"],"created_at":"2024-10-17T21:55:43.945Z","updated_at":"2026-06-23T22:02:53.001Z","avatar_url":"https://github.com/guillempuche.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Effect Documentation PDF and Markdown Generator for ChatGPT\n\nThis guide explains how to create a PDF or markdown file from the Effect documentation, README guides, and examples.\n\n## Prerequisites\n\n- **Deno:** Make sure Deno is installed on your system. If not, you can install it from [Deno's official website](https://deno.land/).\n\n## Setup\n\n### Clone the Necessary Repositories\n\nFirst, clone the Effect Website and Effect Github repositories:\n\n```bash\ngit clone https://github.com/Effect-TS/website.git\ngit clone https://github.com/Effect-TS/effect.git\ngit clone https://github.com/sukovanej/effect-http.git\n```\n\nNext, in the same directory where you cloned the Effect Website, clone your Deno PDF generator repository:\n\n```bash\ngit clone https://github.com/guillempuche/effect_docs_for_chatgpt.git\n```\n\nYour directory structure should now look something like this:\n\n```txt\n/some-folder\n|-- /effect_docs_for_chatgpt\n|-- /effect\n|-- /effect-http\n|-- /website\n```\n\n## Usage\n\nNavigate to the Deno PDF generator directory and run the following command:\n\n```bash\ncd effect_docs_for_chatgpt\ndeno task generate-pdf \u003cdocsDirPath\u003e \u003ceffectDirPath\u003e \u003chttpDirPath\u003e [format:pdf|md] [outputFileName]\n```\n\nThis command will convert the Markdown files found in the `../website/content/docs` directory and include content from the `../effect` repository into a single PDF or Markdown file named `documentation`. The last format and the document name arguments are optional.\n\n## Example Command\n\nIf all repositories are cloned under your home directory, the command would look like this:\n\n```bash\ndeno task generate-pdf ../website/content/docs ../effect ../effect-http md output \u003c-- It will generate \"output.md\"\ndeno task generate-pdf ../website/content/docs ../effect ../effect-http pdf \u003c-- It will generate \"documentation.pdf\"\ndeno task generate-pdf ../website/content/docs ../effect ../effect-http \u003c-- It will generate \"documentation.pdf\"\n```\n\n## Additional Commands\n\nWithin the Deno PDF generator repository, you have access to other useful tasks:\n\n- **Linting**: `deno lint` to check for stylistic errors.\n- **Formatting**: `deno fmt` to format the source code.\n\n## Troubleshooting\n\n- Ensure you have read and write permissions for the directories involved.\n- Confirm that all paths are correctly specified in the commands.\n- Check that Deno is correctly installed by running `deno --version`.\n- If you encounter errors related to Deno's permissions, ensure the script in your `deno.jsonc` file has the necessary permissions flags set.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillempuche%2Feffect_docs_for_chatgpt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguillempuche%2Feffect_docs_for_chatgpt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillempuche%2Feffect_docs_for_chatgpt/lists"}