@codewalla_india/openspec 1.0.1 → 1.0.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
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
|
11
11
|
<a href="https://github.com/codewalla-engineering/OpenSpec/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/codewalla-engineering/OpenSpec/actions/workflows/ci.yml/badge.svg" /></a>
|
|
12
|
+
<a href="https://www.npmjs.com/package/@codewalla_india/openspec"><img alt="npm version" src="https://img.shields.io/npm/v/@codewalla_india/openspec?style=flat-square" /></a>
|
|
12
13
|
<a href="./LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square" /></a>
|
|
13
14
|
<a href="https://discord.gg/YctCnvvshC"><img alt="Discord" src="https://img.shields.io/discord/1411657095639601154?style=flat-square&logo=discord&logoColor=white&label=Discord&suffix=%20online" /></a>
|
|
14
15
|
</p>
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
<summary><strong>The most loved spec framework.</strong></summary>
|
|
18
19
|
|
|
19
20
|
[](https://github.com/codewalla-engineering/OpenSpec/stargazers)
|
|
21
|
+
[](https://www.npmjs.com/package/@codewalla_india/openspec)
|
|
20
22
|
[](https://github.com/codewalla-engineering/OpenSpec/graphs/contributors)
|
|
21
23
|
|
|
22
24
|
</details>
|
|
@@ -87,7 +87,7 @@ function formatBody(bodyText) {
|
|
|
87
87
|
* Generate a pre-filled GitHub issue URL for manual submission
|
|
88
88
|
*/
|
|
89
89
|
function generateManualSubmissionUrl(title, body) {
|
|
90
|
-
const repo = '
|
|
90
|
+
const repo = 'codewalla-engineering/OpenSpec';
|
|
91
91
|
const encodedTitle = encodeURIComponent(title);
|
|
92
92
|
const encodedBody = encodeURIComponent(body);
|
|
93
93
|
const encodedLabels = encodeURIComponent('feedback');
|
|
@@ -114,7 +114,7 @@ function submitViaGhCli(title, body) {
|
|
|
114
114
|
'issue',
|
|
115
115
|
'create',
|
|
116
116
|
'--repo',
|
|
117
|
-
'
|
|
117
|
+
'codewalla-engineering/OpenSpec',
|
|
118
118
|
'--title',
|
|
119
119
|
title,
|
|
120
120
|
'--body',
|
|
@@ -192,25 +192,6 @@ export const COMMAND_REGISTRY = [
|
|
|
192
192
|
takesValue: true,
|
|
193
193
|
},
|
|
194
194
|
COMMON_FLAGS.json,
|
|
195
|
-
{
|
|
196
|
-
name: 'record-comprehension-pass',
|
|
197
|
-
description: 'Record a successful comprehension quiz pass (use with instructions apply)',
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
name: 'score',
|
|
201
|
-
description: 'Quiz score 0-100 (required with --record-comprehension-pass)',
|
|
202
|
-
takesValue: true,
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
name: 'attempt',
|
|
206
|
-
description: 'Quiz attempt number',
|
|
207
|
-
takesValue: true,
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
name: 'question-count',
|
|
211
|
-
description: 'Number of quiz questions taken',
|
|
212
|
-
takesValue: true,
|
|
213
|
-
},
|
|
214
195
|
COMMON_FLAGS.store,
|
|
215
196
|
],
|
|
216
197
|
},
|
package/dist/core/init.js
CHANGED
|
@@ -553,8 +553,8 @@ export class InitCommand {
|
|
|
553
553
|
}
|
|
554
554
|
// Links
|
|
555
555
|
console.log();
|
|
556
|
-
console.log(`Learn more: ${chalk.cyan('https://github.com/
|
|
557
|
-
console.log(`Feedback: ${chalk.cyan('https://github.com/
|
|
556
|
+
console.log(`Learn more: ${chalk.cyan('https://github.com/codewalla-engineering/OpenSpec')}`);
|
|
557
|
+
console.log(`Feedback: ${chalk.cyan('https://github.com/codewalla-engineering/OpenSpec/issues')}`);
|
|
558
558
|
// Restart instruction if any tools were configured
|
|
559
559
|
if (results.createdTools.length > 0 || results.refreshedTools.length > 0) {
|
|
560
560
|
console.log();
|
package/dist/core/update.js
CHANGED
|
@@ -196,7 +196,7 @@ export class UpdateCommand {
|
|
|
196
196
|
console.log(' /opsx:continue Create the next artifact');
|
|
197
197
|
console.log(' /opsx:apply Implement tasks');
|
|
198
198
|
console.log();
|
|
199
|
-
console.log(`Learn more: ${chalk.cyan('https://github.com/
|
|
199
|
+
console.log(`Learn more: ${chalk.cyan('https://github.com/codewalla-engineering/OpenSpec')}`);
|
|
200
200
|
}
|
|
201
201
|
const configuredAndNewTools = [...new Set([...configuredTools, ...newlyConfiguredTools])];
|
|
202
202
|
// 13. Detect new tool directories not currently configured
|