{"id":31722838,"url":"https://github.com/codaea/obsidian-lecture-copilot","last_synced_at":"2025-10-09T04:19:59.278Z","repository":{"id":317493776,"uuid":"1066947651","full_name":"Codaea/obsidian-lecture-copilot","owner":"Codaea","description":null,"archived":false,"fork":false,"pushed_at":"2025-10-01T07:20:58.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-01T09:24:39.511Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"0bsd","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Codaea.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-09-30T07:13:12.000Z","updated_at":"2025-10-01T07:21:02.000Z","dependencies_parsed_at":"2025-10-01T09:37:56.841Z","dependency_job_id":null,"html_url":"https://github.com/Codaea/obsidian-lecture-copilot","commit_stats":null,"previous_names":["codaea/obsidian-lecture-copilot"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Codaea/obsidian-lecture-copilot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codaea%2Fobsidian-lecture-copilot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codaea%2Fobsidian-lecture-copilot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codaea%2Fobsidian-lecture-copilot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codaea%2Fobsidian-lecture-copilot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Codaea","download_url":"https://codeload.github.com/Codaea/obsidian-lecture-copilot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codaea%2Fobsidian-lecture-copilot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000757,"owners_count":26082921,"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-10-09T02:00:07.460Z","response_time":59,"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":"2025-10-09T04:19:58.204Z","updated_at":"2025-10-09T04:19:59.272Z","avatar_url":"https://github.com/Codaea.png","language":"TypeScript","funding_links":["https://buymeacoffee.com","https://github.com/sponsors","https://www.patreon.com/"],"categories":[],"sub_categories":[],"readme":"# Lecture Copilot\n\nA MVP workflow for Recording, transcribing, and supplementing lecture notes\n\nProblem: I can't take notes fast enough sometimes and miss key lecture moments during class\n\nSolution: Ask classmate next to me, study groups\n\nGamer Solution: Build a tool that listens and transcribes the lectures\n\n\n\n## First time developing plugins?\n\nQuick starting guide for new plugin devs:\n\n- Check if [someone already developed a plugin for what you want](https://obsidian.md/plugins)! There might be an existing plugin similar enough that you can partner up with.\n- Make a copy of this repo as a template with the \"Use this template\" button (login to GitHub if you don't see it).\n- Clone your repo to a local development folder. For convenience, you can place this folder in your `.obsidian/plugins/your-plugin-name` folder.\n- Install NodeJS, then run `npm i` in the command line under your repo folder.\n- Run `npm run dev` to compile your plugin from `main.ts` to `main.js`.\n- Make changes to `main.ts` (or create new `.ts` files). Those changes should be automatically compiled into `main.js`.\n- Reload Obsidian to load the new version of your plugin.\n- Enable plugin in settings window.\n- For updates to the Obsidian API run `npm update` in the command line under your repo folder.\n\n## Releasing new releases\n\n- Update your `manifest.json` with your new version number, such as `1.0.1`, and the minimum Obsidian version required for your latest release.\n- Update your `versions.json` file with `\"new-plugin-version\": \"minimum-obsidian-version\"` so older versions of Obsidian can download an older version of your plugin that's compatible.\n- Create new GitHub release using your new version number as the \"Tag version\". Use the exact version number, don't include a prefix `v`. See here for an example: https://github.com/obsidianmd/obsidian-sample-plugin/releases\n- Upload the files `manifest.json`, `main.js`, `styles.css` as binary attachments. Note: The manifest.json file must be in two places, first the root path of your repository and also in the release.\n- Publish the release.\n\n\u003e You can simplify the version bump process by running `npm version patch`, `npm version minor` or `npm version major` after updating `minAppVersion` manually in `manifest.json`.\n\u003e The command will bump version in `manifest.json` and `package.json`, and add the entry for the new version to `versions.json`\n\n## Adding your plugin to the community plugin list\n\n- Check the [plugin guidelines](https://docs.obsidian.md/Plugins/Releasing/Plugin+guidelines).\n- Publish an initial version.\n- Make sure you have a `README.md` file in the root of your repo.\n- Make a pull request at https://github.com/obsidianmd/obsidian-releases to add your plugin.\n\n## How to use\n\n- Clone this repo.\n- Make sure your NodeJS is at least v16 (`node --version`).\n- `npm i` or `yarn` to install dependencies.\n- `npm run dev` to start compilation in watch mode.\n\n## Manually installing the plugin\n\n- Copy over `main.js`, `styles.css`, `manifest.json` to your vault `VaultFolder/.obsidian/plugins/your-plugin-id/`.\n\n## Improve code quality with eslint (optional)\n- [ESLint](https://eslint.org/) is a tool that analyzes your code to quickly find problems. You can run ESLint against your plugin to find common bugs and ways to improve your code. \n- To use eslint with this project, make sure to install eslint from terminal:\n  - `npm install -g eslint`\n- To use eslint to analyze this project use this command:\n  - `eslint main.ts`\n  - eslint will then create a report with suggestions for code improvement by file and line number.\n- If your source code is in a folder, such as `src`, you can use eslint with this command to analyze all files in that folder:\n  - `eslint ./src/`\n\n## Funding URL\n\nYou can include funding URLs where people who use your plugin can financially support it.\n\nThe simple way is to set the `fundingUrl` field to your link in your `manifest.json` file:\n\n```json\n{\n    \"fundingUrl\": \"https://buymeacoffee.com\"\n}\n```\n\nIf you have multiple URLs, you can also do:\n\n```json\n{\n    \"fundingUrl\": {\n        \"Buy Me a Coffee\": \"https://buymeacoffee.com\",\n        \"GitHub Sponsor\": \"https://github.com/sponsors\",\n        \"Patreon\": \"https://www.patreon.com/\"\n    }\n}\n```\n\n## API Documentation\n\nSee https://github.com/obsidianmd/obsidian-api\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodaea%2Fobsidian-lecture-copilot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodaea%2Fobsidian-lecture-copilot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodaea%2Fobsidian-lecture-copilot/lists"}