pi-ask-tool-extension 0.1.0 → 0.1.2

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/README.md CHANGED
@@ -45,7 +45,7 @@ pi install git:github.com/devkade/pi-ask-tool@v0.1.0
45
45
  ### Local development run
46
46
 
47
47
  ```bash
48
- pi -e ./ask-extension.ts
48
+ pi -e ./src/index.ts
49
49
  ```
50
50
 
51
51
  ## Quick Start
@@ -174,8 +174,7 @@ npm run typecheck
174
174
 
175
175
  ## Project Structure
176
176
 
177
- - `ask-extension.ts` - extension entrypoint
178
- - `src/index.ts` - tool registration and orchestration
177
+ - `src/index.ts` - extension entrypoint, tool registration, and orchestration
179
178
  - `src/ask-logic.ts` - selection/result mapping helpers
180
179
  - `src/ask-inline-ui.ts` - single-question UI
181
180
  - `src/ask-tabs-ui.ts` - tabbed multi-question UI
package/package.json CHANGED
@@ -1,18 +1,25 @@
1
1
  {
2
2
  "name": "pi-ask-tool-extension",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Ask tool extension for pi with tabbed questioning and inline note editing",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/devkade/pi-ask-tool.git"
8
+ },
9
+ "homepage": "https://github.com/devkade/pi-ask-tool#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/devkade/pi-ask-tool/issues"
12
+ },
5
13
  "type": "module",
6
14
  "keywords": [
7
15
  "pi-package"
8
16
  ],
9
17
  "pi": {
10
18
  "extensions": [
11
- "./ask-extension.ts"
19
+ "./src/index.ts"
12
20
  ]
13
21
  },
14
22
  "files": [
15
- "ask-extension.ts",
16
23
  "src",
17
24
  "README.md"
18
25
  ],
package/ask-extension.ts DELETED
@@ -1 +0,0 @@
1
- export { default } from "./src/index";