Skip to content

Commit ac1a583

Browse files
committed
chore: bump version to 2.0.0
1 parent 05379a7 commit ac1a583

2 files changed

Lines changed: 110 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,73 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.5.0] - 2025-10-27
11+
12+
### Added - Agent-First Experience 🤖
13+
14+
- **Agent-Native Design**: AI assistants (Cursor, Windsurf, GitHub Copilot) now proactively maintain the knowledge graph with zero user friction
15+
- **IDE Integration**: New `--ide` flag for `agenthq init` to generate agent instructions
16+
- `.cursorrules` for Cursor AI
17+
- `.github/copilot-instructions.md` for GitHub Copilot
18+
- `.windsurf/workflows/` for Windsurf Cascade (7 workflows)
19+
- **Comprehensive Agent Instructions**: `agent-instructions.md` (5000+ words) guides agents on proactive behavior
20+
- **Agent Mode Workflow**: New `/agenthq-agent-mode` workflow for Windsurf with auto-run support
21+
22+
### Added - Spec-Driven Development 🌱
23+
24+
- **Spec Kit Integration**: Complete spec-driven workflow based on GitHub Spec Kit methodology
25+
- **Constitution Template**: Project principles and decision framework (`constitution.md`)
26+
- **Specification Template**: Feature specs with user stories, requirements, success metrics (`spec.md`)
27+
- **Plan Template**: Technical implementation plans with architecture, data models, API contracts (`plan.md`)
28+
- **Tasks Template**: Task breakdowns with estimates, dependencies, parallel markers (`tasks.md`)
29+
- **New CLI Commands**:
30+
- `agenthq spec init` - Initialize spec-driven workflow
31+
- `agenthq spec create <feature-name>` - Create feature specification
32+
- `agenthq spec plan <feature-id>` - Generate implementation plan
33+
- `agenthq spec tasks <feature-id>` - Generate task breakdown
34+
- `agenthq import speckit` - Import existing Spec Kit artifacts
35+
- **Spec Views**: New `entities/specs.md` view showing all specs with progress
36+
- **Windsurf Workflows**: 4 new spec kit workflows (constitution, specify, plan, tasks)
37+
38+
### Added - Documentation 📚
39+
40+
- **AGENT-FIRST-UX.md**: Complete guide to agent-first experience (7000+ words)
41+
- **QUICKSTART.md**: 30-minute onboarding guide for new users
42+
- **SPEC-KIT-INTEGRATION.md**: Complete spec-driven development guide
43+
- **AGENT-FIRST-SUMMARY.md**: Implementation summary and design decisions
44+
- **justfile**: Command runner with `just ship` for one-command publishing
45+
- **JUSTFILE-GUIDE.md**: Complete guide to using just commands
46+
47+
### Enhanced
48+
49+
- **Enhanced Sync**: Now generates `specs.md` entity view with task counts and status
50+
- **Auto-Detection**: All commands auto-detect `.agenthq/` directory by walking up tree (like git)
51+
- **Smart Defaults**: Agents infer time estimates, priorities, and when to log decisions
52+
- **Proactive Logging**: Agents automatically log decisions during implementation
53+
- **Context Loading**: Agents load project context at session start
54+
- **Batched Updates**: Agents bundle confirmations to minimize flow interruption
55+
56+
### Changed
57+
58+
- **Package Name**: Renamed from `@agenthq/core` to `agenthq` (simpler, cleaner!)
59+
- **README.md**: Completely rewritten to emphasize agent-first experience
60+
- **Keywords**: Updated for better npm discoverability (agent-native, cursor, windsurf, copilot)
61+
- **Package Files**: Now includes entire `docs/` directory with all documentation
62+
- **Documentation Structure**: Reorganized into `docs/` with clear topic-based folders
63+
- `docs/getting-started/` - Onboarding guides
64+
- `docs/features/` - Feature deep dives
65+
- `docs/guides/` - Advanced topics
66+
- `docs/development/` - Contributing and publishing
67+
- **CLI Alias**: Added `hq` as short alias for `agenthq` command (both work identically)
68+
- **npx Support**: Added documentation for using `npx agenthq` without installation
1069

1170
## [1.4.0] - 2025-10-24
1271
### Added
1372
- add automated changelog generation from git history
1473

1574
## [1.3.1] - 2025-10-24
1675
### Fixed
17-
- Updated GitHub URLs from codehq to code-hq
76+
- Updated GitHub URLs from codehq to agenthq
1877

1978
## [1.1.0] - 2024-01-XX
2079

package.json

Lines changed: 50 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
11
{
2-
"name": "code-hq",
3-
"version": "1.5.0",
4-
"description": "Project knowledge graph for agentic development",
5-
"main": "src/index.ts",
6-
"module": "src/index.ts",
2+
"name": "agenthq",
3+
"version": "2.0.0",
4+
"description": "Agent-native knowledge graph for coordinated development",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"types": "dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"import": "./dist/index.js",
11+
"types": "./dist/index.d.ts"
12+
}
13+
},
714
"type": "module",
815
"private": false,
916
"bin": {
10-
"code-hq": "./bin/code-hq.ts"
17+
"agenthq": "dist/bin/agenthq.js",
18+
"hq": "dist/bin/hq.js"
1119
},
1220
"scripts": {
13-
"dev": "bun run index.ts",
14-
"code-hq": "bun run bin/code-hq.ts",
21+
"clean": "rm -rf dist",
22+
"build": "npm run clean && tsc -p tsconfig.build.json && node scripts/copy-templates.mjs",
23+
"verify-publish": "node scripts/verify-publish.mjs",
24+
"ship": "node scripts/ship.mjs",
25+
"ship:patch": "node scripts/ship.mjs patch",
26+
"ship:minor": "node scripts/ship.mjs minor",
27+
"ship:major": "node scripts/ship.mjs major",
28+
"dev": "node dist/bin/agenthq.js --help",
29+
"agenthq": "node dist/bin/agenthq.js",
30+
"hq": "node dist/bin/hq.js",
1531
"demo:eav": "bun run examples/eav-demo.ts",
1632
"demo:graph": "bun run examples/graph-demo.ts",
1733
"demo:agent-graph": "bun run examples/agent-graph-demo.ts",
@@ -23,43 +39,57 @@
2339
"demos": "bun run examples/run-all-demos.ts",
2440
"tql": "bun run src/cli/tql.ts",
2541
"demo:tql": "bun run examples/tql-demo.ts",
26-
"build": "bun build src/index.ts --outdir dist",
2742
"typecheck": "tsc --noEmit",
28-
"clean": "rm -rf dist",
43+
"prepublishOnly": "npm run build && bun test",
2944
"test": "vitest run",
3045
"test:watch": "vitest",
3146
"test:workflow": "vitest run test/workflow-hardening.test.ts"
3247
},
3348
"keywords": [
34-
"project-management",
35-
"knowledge-graph",
49+
"agent-native",
3650
"ai-agents",
37-
"datalog",
38-
"eav",
51+
"knowledge-graph",
52+
"project-management",
3953
"task-management",
40-
"semantic-web",
54+
"spec-driven-development",
55+
"cursor",
56+
"windsurf",
57+
"copilot",
58+
"datalog",
4159
"json-ld",
42-
"agent-native",
43-
"local-first"
60+
"local-first",
61+
"developer-tools",
62+
"cli"
4463
],
4564
"repository": {
4665
"type": "git",
47-
"url": "https://github.com/trentbrew/code-hq.git"
66+
"url": "https://github.com/trentbrew/agenthq.git"
4867
},
4968
"bugs": {
50-
"url": "https://github.com/trentbrew/code-hq/issues"
69+
"url": "https://github.com/trentbrew/agenthq/issues"
5170
},
52-
"homepage": "https://github.com/trentbrew/code-hq#readme",
71+
"homepage": "https://github.com/trentbrew/agenthq#readme",
5372
"author": "Trent Brew <trentbrew@gmail.com>",
5473
"license": "MIT",
5574
"devDependencies": {
5675
"@types/bun": "latest",
5776
"@types/yaml": "^1.9.7",
77+
"typescript": "^5",
5878
"vitest": "^1.0.0"
5979
},
6080
"peerDependencies": {
6181
"typescript": "^5"
6282
},
83+
"engines": {
84+
"node": ">=18"
85+
},
86+
"files": [
87+
"dist",
88+
"README.md",
89+
"LICENSE",
90+
"CHANGELOG.md",
91+
"docs"
92+
],
6393
"dependencies": {
6494
"@ai-sdk/openai": "^2.0.30",
6595
"ai": "^5.0.44",

0 commit comments

Comments
 (0)