tripkit 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
1
+ # Changelog
2
+
3
+ All notable changes to TripKit are documented here. Versioning follows [SemVer](https://semver.org/).
4
+
5
+ ## [1.0.1] — 2026-04-30
6
+
7
+ ### Fixed
8
+ - `examples/oregon-spring-2026.yaml`: corrected `total_stops: 22 → 19` to match actual stop count.
9
+ - Renderer: added inline-SVG favicon to silence the `/favicon.ico` 404 and provide a brand mark.
10
+
11
+ ### Changed
12
+ - Package size dropped from ~7.6 MB unpacked to ~70 KB by excluding `docs/screenshot.png` from the npm tarball; README now references the screenshot via an absolute GitHub raw URL so it still renders on npmjs.com.
13
+ - README leads with `npx tripkit ...` (no clone, no install) as the recommended entry point; clone-and-hack flow demoted to a secondary option.
14
+ - CLI now supports `--help` and `--version` flags and adapts help text based on whether it was invoked as `tripkit` or `node convert.js`.
15
+
16
+ ## [1.0.0] — 2026-04-30
17
+
18
+ Initial release.
19
+
20
+ - YAML schema (`schema/tripkit.schema.yaml`) — the data contract.
21
+ - Self-contained HTML renderer with Leaflet map, day-by-day sidebar, hotel markers, route polylines.
22
+ - CLI converter: `tripkit <trip.yaml> [output.html]`.
23
+ - Oregon Spring Break 2026 example trip (6 days, 19 stops).
24
+ - Agent skill + questionnaire for AI-assisted trip planning.
package/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # 🗺️ TripKit
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/tripkit.svg)](https://www.npmjs.com/package/tripkit)
4
+ [![npm downloads](https://img.shields.io/npm/dm/tripkit.svg)](https://www.npmjs.com/package/tripkit)
5
+ [![license](https://img.shields.io/npm/l/tripkit.svg)](./LICENSE)
6
+
3
7
  **Open-source framework for AI-assisted trip planning with beautiful interactive visualizers.**
4
8
 
5
9
  TripKit is a structured data schema + rendering engine that turns trip plans into stunning interactive maps with day-by-day itineraries. It works with any AI agent (Claude, GPT, Gemini) or can be filled in manually.
6
10
 
7
11
  <p align="center">
8
- <img src="docs/screenshot.png" alt="TripKit Visualizer" width="800">
12
+ <img src="https://raw.githubusercontent.com/piti/tripkit/main/docs/screenshot.png" alt="TripKit Visualizer" width="800">
9
13
  </p>
10
14
 
11
15
  ## Why TripKit?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tripkit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Open-source framework for AI-assisted trip planning with beautiful interactive visualizers",
5
5
  "main": "convert.js",
6
6
  "bin": {
@@ -13,8 +13,8 @@
13
13
  "examples/oregon-spring-2026.yaml",
14
14
  "agent/questionnaire.yaml",
15
15
  "agent/AGENT-SKILL.md",
16
- "docs/screenshot.png",
17
16
  "README.md",
17
+ "CHANGELOG.md",
18
18
  "LICENSE"
19
19
  ],
20
20
  "scripts": {
package/docs/README.md DELETED
@@ -1 +0,0 @@
1
- Screenshot placeholder — replace with actual screenshot of the TripKit visualizer
Binary file