archivistai1k downloadsImport selected vault files into Archivist campaigns.
Import selected Obsidian vault files into your Archivist campaigns.
Archivist Importer.Open import view.Development only: use this if you want to build and copy the plugin manually; for normal usage, install it from Obsidian Community Plugins. Run npm install once in this repository so the Rollup build has its dependencies. The script assumes you run it from the plugin repo folder (where package.json lives) so that npm run build can find the project.
#!/bin/bash
set -euo pipefail
# Quick deploy script - edit the VAULT_PATH to your vault location
VAULT_PATH="/path/to/your/vault"
PLUGIN_DIR="$VAULT_PATH/.obsidian/plugins/archivist-importer"
npm run build
mkdir -p "$PLUGIN_DIR"
cp manifest.json main.js styles.css "$PLUGIN_DIR/"
echo "✅ Plugin copied to $PLUGIN_DIR"
For active development:
npm run dev # watches for changes and rebuilds
Then reload the plugin in Obsidian (Settings → Community plugins → disable and re-enable).
This plugin is prepared for submission to Obsidian Community Plugins and follows the current Obsidian submission and plugin guidance.
manifest.json, versions.json, README.md, LICENSE); release assets (manifest.json, main.js, styles.css) are attached to GitHub releases.manifest.json version matches package.json and release tags.src/ and build output is a single main.js..obsidian/plugins/archivist-importer/data.json) and the API key is stored in Obsidian Secret Storage.https://api.myarchivist.ai.isDesktopOnly: true in manifest.json to avoid mobile distribution until tested.See RELEASING.md for the current release checklist and automation notes.
description.https://api.myarchivist.ai using your x-api-key header..obsidian/plugins/archivist-importer/ in your vault.RELEASING.md.npm version patch --no-git-tag-version (or minor / major).pnpm run lint.pnpm run build.versions.json every time.CHANGELOG.md.v prefix.manifest.json, main.js, and styles.css attached.obsidian-releases PR for the initial plugin submission or plugin-directory metadata changes.References: