Files
upstash__context7/package.json
T
Fahreddin Özcan 8ba484cdc8 feat(cli): add interactive skill generation wizard (#1572)
* generate skills

* feat: add generate questions methods

* feat(cli): improve skill generation UX with streaming feedback

- Add real-time query results display during generation
- Collapse answered questions to show summary
- Separate query phase spinner from generation spinner
- Add skill preview with expand option
- Remove legacy generateSkill function
- Clean up redundant comments

* feat(cli): improve skill generation UX with streaming feedback

- Add real-time query results display during generation
- Collapse answered questions to show summary
- Separate query phase spinner from generation spinner
- Add skill preview with expand option
- Remove legacy generateSkill function
- Clean up redundant comments

* feat(cli): optimize feedback regeneration and clean up UI

- Add previousContent to StructuredGenerateInput for efficient feedback
- Remove redundant "Selected X libraries" log message
- Consolidate menu options (remove "Regenerate completely")
- Update feedback prompt with skip hint

* feat(cli): add skill generation with quota and improved display

- Add skill quota checking before generation
- Fix tool result display timing issue
- Show library project IDs in selection to avoid confusion
- Improve generation spinner with query log display

* docs(cli): add 0.2.0 changelog entry

* fix(cli): switch userinfo endpoint from dev to production

* docs(cli): add skill generation and auth sections to README

* fix(sdk): increase timeout for sequential search test

* chore(cli): replace manual changelog with changeset for skill generation
2026-01-29 11:46:45 +03:00

62 lines
1.9 KiB
JSON

{
"name": "@upstash/context7",
"private": true,
"version": "1.0.0",
"description": "Context7 monorepo - Documentation tools and SDKs",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r run build",
"build:sdk": "pnpm --filter @upstash/context7-sdk build",
"build:mcp": "pnpm --filter @upstash/context7-mcp build",
"build:ai-sdk": "pnpm --filter @upstash/context7-tools-ai-sdk build",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test",
"test:sdk": "pnpm --filter @upstash/context7-sdk test",
"test:tools-ai-sdk": "pnpm --filter @upstash/context7-tools-ai-sdk test",
"clean": "pnpm -r run clean && rm -rf node_modules",
"lint": "pnpm -r run lint",
"lint:check": "pnpm -r run lint:check",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"release": "pnpm build && changeset publish",
"release:snapshot": "changeset version --snapshot canary && pnpm build && changeset publish --tag canary --no-git-tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/context7.git"
},
"keywords": [
"modelcontextprotocol",
"mcp",
"context7",
"vibe-coding",
"developer tools",
"documentation",
"context"
],
"author": "abdush",
"license": "MIT",
"bugs": {
"url": "https://github.com/upstash/context7/issues"
},
"homepage": "https://github.com/upstash/context7#readme",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"prettier": "^3.6.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
},
"dependencies": {
"@inquirer/core": "^11.1.1",
"@inquirer/type": "^4.0.3"
}
}