@liangxie/qf 0.0.1 → 0.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/package.json +2 -1
- package/.claude/commands/opsx/apply.md +0 -155
- package/.claude/commands/opsx/archive.md +0 -160
- package/.claude/commands/opsx/explore.md +0 -174
- package/.claude/commands/opsx/propose.md +0 -109
- package/.claude/commands/opsx/sync.md +0 -143
- package/.claude/skills/openspec-apply-change/SKILL.md +0 -159
- package/.claude/skills/openspec-archive-change/SKILL.md +0 -117
- package/.claude/skills/openspec-explore/SKILL.md +0 -289
- package/.claude/skills/openspec-propose/SKILL.md +0 -113
- package/.claude/skills/openspec-sync-specs/SKILL.md +0 -147
- package/.codex/skills/openspec-apply-change/SKILL.md +0 -159
- package/.codex/skills/openspec-archive-change/SKILL.md +0 -117
- package/.codex/skills/openspec-explore/SKILL.md +0 -289
- package/.codex/skills/openspec-propose/SKILL.md +0 -113
- package/.codex/skills/openspec-sync-specs/SKILL.md +0 -147
- package/.cursor/commands/opsx-apply.md +0 -155
- package/.cursor/commands/opsx-archive.md +0 -160
- package/.cursor/commands/opsx-explore.md +0 -174
- package/.cursor/commands/opsx-propose.md +0 -109
- package/.cursor/commands/opsx-sync.md +0 -143
- package/.cursor/skills/openspec-apply-change/SKILL.md +0 -159
- package/.cursor/skills/openspec-archive-change/SKILL.md +0 -117
- package/.cursor/skills/openspec-explore/SKILL.md +0 -289
- package/.cursor/skills/openspec-propose/SKILL.md +0 -113
- package/.cursor/skills/openspec-sync-specs/SKILL.md +0 -147
- package/.github/prompts/opsx-apply.prompt.md +0 -152
- package/.github/prompts/opsx-archive.prompt.md +0 -157
- package/.github/prompts/opsx-explore.prompt.md +0 -171
- package/.github/prompts/opsx-propose.prompt.md +0 -106
- package/.github/prompts/opsx-sync.prompt.md +0 -140
- package/.github/skills/openspec-apply-change/SKILL.md +0 -159
- package/.github/skills/openspec-archive-change/SKILL.md +0 -117
- package/.github/skills/openspec-explore/SKILL.md +0 -289
- package/.github/skills/openspec-propose/SKILL.md +0 -113
- package/.github/skills/openspec-sync-specs/SKILL.md +0 -147
- package/.omo/run-continuation/ses_0d9f5cba6ffeW2r1NWuthiPI0F.json +0 -10
- package/.opencode/commands/opsx-apply.md +0 -152
- package/.opencode/commands/opsx-archive.md +0 -157
- package/.opencode/commands/opsx-explore.md +0 -171
- package/.opencode/commands/opsx-propose.md +0 -106
- package/.opencode/commands/opsx-sync.md +0 -140
- package/.opencode/skills/openspec-apply-change/SKILL.md +0 -159
- package/.opencode/skills/openspec-archive-change/SKILL.md +0 -117
- package/.opencode/skills/openspec-explore/SKILL.md +0 -289
- package/.opencode/skills/openspec-propose/SKILL.md +0 -113
- package/.opencode/skills/openspec-sync-specs/SKILL.md +0 -147
- package/openspec/changes/archive/2026-07-03-add-say-command/.openspec.yaml +0 -2
- package/openspec/changes/archive/2026-07-03-add-say-command/design.md +0 -73
- package/openspec/changes/archive/2026-07-03-add-say-command/proposal.md +0 -28
- package/openspec/changes/archive/2026-07-03-add-say-command/specs/cli-framework/spec.md +0 -22
- package/openspec/changes/archive/2026-07-03-add-say-command/specs/say-command/spec.md +0 -22
- package/openspec/changes/archive/2026-07-03-add-say-command/tasks.md +0 -17
- package/openspec/config.yaml +0 -20
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
## ADDED Requirements
|
|
2
|
-
|
|
3
|
-
### Requirement: Say command exists
|
|
4
|
-
The system SHALL have a `say` command that can be invoked via `qf say`.
|
|
5
|
-
|
|
6
|
-
#### Scenario: Say command is available
|
|
7
|
-
- **WHEN** user runs `qf say`
|
|
8
|
-
- **THEN** command executes without error
|
|
9
|
-
|
|
10
|
-
### Requirement: Say command outputs hello
|
|
11
|
-
The system SHALL output "hello" when the `say` command is executed.
|
|
12
|
-
|
|
13
|
-
#### Scenario: Say command outputs hello
|
|
14
|
-
- **WHEN** user runs `qf say`
|
|
15
|
-
- **THEN** system outputs "hello" to stdout
|
|
16
|
-
|
|
17
|
-
### Requirement: Say command has no arguments
|
|
18
|
-
The system SHALL NOT accept any arguments for the `say` command.
|
|
19
|
-
|
|
20
|
-
#### Scenario: Say command ignores arguments
|
|
21
|
-
- **WHEN** user runs `qf say world`
|
|
22
|
-
- **THEN** system still outputs "hello" (ignoring "world")
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
## 1. Setup
|
|
2
|
-
|
|
3
|
-
- [x] 1.1 Create `index.js` file with shebang line
|
|
4
|
-
- [x] 1.2 Add commander dependency to package.json
|
|
5
|
-
- [x] 1.3 Add bin field to package.json
|
|
6
|
-
|
|
7
|
-
## 2. Core Implementation
|
|
8
|
-
|
|
9
|
-
- [x] 2.1 Import commander in index.js
|
|
10
|
-
- [x] 2.2 Define `say` command that outputs "hello"
|
|
11
|
-
- [x] 2.3 Configure program name and version
|
|
12
|
-
|
|
13
|
-
## 3. Testing
|
|
14
|
-
|
|
15
|
-
- [x] 3.1 Run `npm link` to test locally
|
|
16
|
-
- [x] 3.2 Test `qf say` command outputs "hello"
|
|
17
|
-
- [x] 3.3 Verify command works with arguments (should ignore them)
|
package/openspec/config.yaml
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
schema: spec-driven
|
|
2
|
-
|
|
3
|
-
# Project context (optional)
|
|
4
|
-
# This is shown to AI when creating artifacts.
|
|
5
|
-
# Add your tech stack, conventions, style guides, domain knowledge, etc.
|
|
6
|
-
# Example:
|
|
7
|
-
# context: |
|
|
8
|
-
# Tech stack: TypeScript, React, Node.js
|
|
9
|
-
# We use conventional commits
|
|
10
|
-
# Domain: e-commerce platform
|
|
11
|
-
|
|
12
|
-
# Per-artifact rules (optional)
|
|
13
|
-
# Add custom rules for specific artifacts.
|
|
14
|
-
# Example:
|
|
15
|
-
# rules:
|
|
16
|
-
# proposal:
|
|
17
|
-
# - Keep proposals under 500 words
|
|
18
|
-
# - Always include a "Non-goals" section
|
|
19
|
-
# tasks:
|
|
20
|
-
# - Break tasks into chunks of max 2 hours
|