@kiroku-solutions/kiroku-ai 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/prompts.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiroku-solutions/kiroku-ai",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Interactive CLI to bootstrap Kiroku AI Standards (AI Context as Code) into any project.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/prompts.mjs CHANGED
@@ -221,7 +221,7 @@ export async function promptForToken() {
221
221
 
222
222
  const token = ensure(
223
223
  await text({
224
- message: 'Enter your GitHub PAT (with read:packages permission):',
224
+ message: 'Enter your GitHub PAT (with "repo" permission):',
225
225
  placeholder: 'ghp_...',
226
226
  validate(value) {
227
227
  if (!value.trim()) return 'Token is required to download private skills.';