chore: release v0.9.2

This commit is contained in:
Noah Brier
2025-09-14 08:22:08 -04:00
parent 0613712da3
commit fe8f051630
3 changed files with 15 additions and 26 deletions
+11 -1
View File
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.9.2] - 2025-01-14
### Fixed
- Corrected Firecrawl script examples to use `npm run` commands
- Added contributing guideline about reviewing AI-generated content before submission
### Removed
- Removed Common Patterns section from README (redundant)
## [0.9.1] - 2025-01-14 ## [0.9.1] - 2025-01-14
### Changed ### Changed
@@ -265,7 +274,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- API keys stored in environment variables - API keys stored in environment variables
- .mcp.json gitignored for security - .mcp.json gitignored for security
[Unreleased]: https://github.com/heyitsnoah/claudesidian/compare/v0.9.1...HEAD [Unreleased]: https://github.com/heyitsnoah/claudesidian/compare/v0.9.2...HEAD
[0.9.2]: https://github.com/heyitsnoah/claudesidian/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/heyitsnoah/claudesidian/compare/v0.9.0...v0.9.1 [0.9.1]: https://github.com/heyitsnoah/claudesidian/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/heyitsnoah/claudesidian/compare/v0.8.8...v0.9.0 [0.9.0]: https://github.com/heyitsnoah/claudesidian/compare/v0.8.8...v0.9.0
[0.8.8]: https://github.com/heyitsnoah/claudesidian/compare/v0.8.7...v0.8.8 [0.8.8]: https://github.com/heyitsnoah/claudesidian/compare/v0.8.7...v0.8.8
+3 -24
View File
@@ -205,10 +205,10 @@ With [Firecrawl](https://www.firecrawl.dev/) configured, our helper scripts fetc
**Example workflow:** **Example workflow:**
```bash ```bash
# Save a single article # Save a single article
./scripts/firecrawl-scrape.sh "https://example.com/article" "03_Resources/Articles" npm run firecrawl:scrape -- "https://example.com/article" "03_Resources/Articles"
# Batch save multiple URLs # Batch save multiple URLs
./scripts/firecrawl-batch.sh urls.txt "03_Resources/Research" npm run firecrawl:batch -- urls.txt "03_Resources/Research"
``` ```
**Getting a Firecrawl API key:** **Getting a Firecrawl API key:**
@@ -277,28 +277,6 @@ You are a research assistant.
4. **Trust but verify**: Always read AI-generated content 4. **Trust but verify**: Always read AI-generated content
5. **Break your flow**: AI helps you resume easily 5. **Break your flow**: AI helps you resume easily
### Common Patterns
**The Daily Review**:
```
What new notes were created today?
What connections can you see between today's work and my existing notes?
```
**The Weekly Synthesis**:
```
Review all notes from this week.
What are the key themes and insights?
What questions remain unanswered?
```
**The Project Retrospective**:
```
This project is complete.
Create a summary of what was learned and accomplished.
What should be archived vs kept accessible?
```
## Troubleshooting ## Troubleshooting
### Claude Code can't find my notes ### Claude Code can't find my notes
@@ -358,6 +336,7 @@ We welcome contributions from the community! This is a living template that gets
- Test thoroughly before submitting - Test thoroughly before submitting
- Follow existing code style and structure - Follow existing code style and structure
- Update the CHANGELOG.md with your changes - Update the CHANGELOG.md with your changes
- **AI-generated content is welcome, but you MUST carefully read and review everything before submitting** - never submit code you don't understand
### Getting Updates ### Getting Updates
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "claudesidian", "name": "claudesidian",
"version": "0.9.1", "version": "0.9.2",
"description": "Claude Code + Obsidian Starter Kit - AI-powered second brain", "description": "Claude Code + Obsidian Starter Kit - AI-powered second brain",
"type": "module", "type": "module",
"scripts": { "scripts": {