agentfiles
Browse, create, and edit AI agent files across Claude Code, Cursor, Codex, and 12 coding tools — from Obsidian.
File Explorer
- ci.yml
- release.yml
- browse.jpeg
- dashboard.jpeg
- check-tool-count.ts
- note-exporter.ts
- parser.ts
- store.ts
- tagger.ts
- editor-factory.ts
- frontmatter-fold.ts
- frontmatter-lint.ts
- theme.ts
- shell.ts
- confirm-modal.ts
- conversation-detail.ts
- conversation-list.ts
- create-skill-modal.ts
- dashboard.ts
- detail.ts
- install-modal.ts
- list.ts
- main-view.ts
- marketplace-view.ts
- sidebar.ts
- sparkline.ts
- main.ts
- marketplace.ts
- scaffolds.ts
- scanner.ts
- settings.ts
- skillkit.ts
- store.ts
- tool-configs.ts
- tool-icons.ts
- tool-svgs.ts
- tools-meta.ts
- types.ts
- watcher.ts
- icon.svg
- conversations.ts
- extension.ts
- obsidian-shim.ts
- panels.ts
- parity.ts
- rich-extension.ts
- .gitignore
- .vscodeignore
- bun.lock
- esbuild.config.mjs
- package.json
- tsconfig.json
- page.tsx
- page.tsx
- favicon.ico
- globals.css
- layout.tsx
- page.tsx
- footer.tsx
- nav.tsx
- favicon.ico
- file.svg
- globe.svg
- next.svg
- og-twitter.png
- og.png
- vercel.svg
- window.svg
- generate-assets.ts
- sync-tools-meta.ts
- .gitignore
- AGENTS.md
- biome.json
- bun.lock
- CLAUDE.md
- next.config.ts
- package.json
- postcss.config.mjs
- README.md
- tsconfig.json
- vercel.json
- .gitignore
- bun.lock
- esbuild.config.mjs
- eslint.config.mjs
- LICENSE
- main.js
- manifest.json
- package-lock.json
- package.json
- README.md
- styles.css
- tsconfig.json
- versions.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
