@tiqora/tiqora 0.0.2-dev

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 ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@tiqora/tiqora",
3
+ "version": "0.0.2-dev",
4
+ "description": "Agentic delivery CLI for solo devs: challenge tickets, orchestrate PM/SM/Dev flows, and keep execution synced.",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.mjs",
8
+ "files": [
9
+ "dist",
10
+ "templates",
11
+ "_tiqora",
12
+ "README.md"
13
+ ],
14
+ "bin": {
15
+ "tiqora": "./dist/index.cjs"
16
+ },
17
+ "engines": {
18
+ "node": ">=20"
19
+ },
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "prepack": "npm run build",
23
+ "test": "npm run build && vitest run"
24
+ },
25
+ "dependencies": {
26
+ "@clack/prompts": "^1.0.0",
27
+ "commander": "^14.0.0"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^24.0.0",
31
+ "tsup": "^8.5.0",
32
+ "typescript": "^5.9.0",
33
+ "vitest": "^4.0.0"
34
+ }
35
+ }
File without changes
@@ -0,0 +1,17 @@
1
+ ---
2
+ description: 'Launch the tiqora Developer agent for implementation guidance and execution support'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:agent:dev`
7
+
8
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the Developer agent:
9
+
10
+ <steps CRITICAL="TRUE">
11
+ 1. Always LOAD the FULL @_tiqora/agents/dev.md
12
+ 2. READ its entire contents and apply activation, persona, menu, and rules exactly
13
+ 3. Resolve config using project `.tiqora.yaml` (required) + `~/.tiqora/config.yaml` (optional base)
14
+ 4. YOU MUST ALWAYS SPEAK OUTPUT in the effective `communication_language`
15
+ 5. Generate artifacts in `document_language` unless user explicitly requests otherwise
16
+ 6. When a workflow menu item is selected, execute via @_tiqora/core/tasks/workflow.xml with the workflow yaml path defined by the agent menu
17
+ </steps>
@@ -0,0 +1,18 @@
1
+ ---
2
+ description: 'Launch the tiqora Product Manager agent for requirement clarity and prioritization'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:agent:pm`
7
+
8
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the Product Manager agent:
9
+
10
+ <steps CRITICAL="TRUE">
11
+ 1. Always LOAD the FULL @_tiqora/agents/pm.md
12
+ 2. READ its entire contents and apply activation, persona, menu, and rules exactly
13
+ 3. Resolve config using project `.tiqora.yaml` (required) + `~/.tiqora/config.yaml` (optional base)
14
+ 4. YOU MUST ALWAYS SPEAK OUTPUT in the effective `communication_language`
15
+ 5. Generate artifacts in `document_language` unless user explicitly requests otherwise
16
+ 6. Keep decisions anchored on user value, measurable outcomes, and explicit scope boundaries
17
+ 7. When a workflow menu item is selected, execute via @_tiqora/core/tasks/workflow.xml with the workflow yaml path defined by the agent menu
18
+ </steps>
@@ -0,0 +1,18 @@
1
+ ---
2
+ description: 'Launch the tiqora Scrum Master agent for planning, sequencing, and sprint flow'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:agent:sm`
7
+
8
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the Scrum Master agent:
9
+
10
+ <steps CRITICAL="TRUE">
11
+ 1. Always LOAD the FULL @_tiqora/agents/sm.md
12
+ 2. READ its entire contents and apply activation, persona, menu, and rules exactly
13
+ 3. Resolve config using project `.tiqora.yaml` (required) + `~/.tiqora/config.yaml` (optional base)
14
+ 4. YOU MUST ALWAYS SPEAK OUTPUT in the effective `communication_language`
15
+ 5. Generate artifacts in `document_language` unless user explicitly requests otherwise
16
+ 6. Do not execute coding tasks directly; route implementation to `/tiq:workflow:dev-story`
17
+ 7. When a workflow menu item is selected, execute via @_tiqora/core/tasks/workflow.xml with the workflow yaml path defined by the agent menu
18
+ </steps>
@@ -0,0 +1,21 @@
1
+ ---
2
+ description: 'Run the tiqora create-story workflow to produce implementation-ready story specs'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:workflow:create-story`
7
+
8
+ ## Workflow Intent
9
+
10
+ Generate a structured story with clear acceptance criteria and implementation scope.
11
+
12
+ ## Required Inputs
13
+
14
+ - Project context from `.tiqora.yaml`
15
+ - Ticket intent or problem statement
16
+ - Delivery constraints
17
+
18
+ ## Output
19
+
20
+ - Story artifact in `.tiqora/workflows/steps/`
21
+ - Updated sprint tracking status
@@ -0,0 +1,21 @@
1
+ ---
2
+ description: 'Run the tiqora create-ticket workflow to draft and create a ticket in the configured PM tool'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:workflow:create-ticket`
7
+
8
+ ## Workflow Intent
9
+
10
+ Create a structured ticket with clear acceptance criteria and PM-aligned metadata.
11
+
12
+ ## Required Inputs
13
+
14
+ - `.tiqora.yaml`
15
+ - Problem statement and expected outcome
16
+ - Priority and constraints
17
+
18
+ ## Output
19
+
20
+ - Created ticket in configured PM tool (or queued sync if unavailable)
21
+ - Local ticket artifact for traceability in `.tiqora/workflows/steps/`
@@ -0,0 +1,16 @@
1
+ ---
2
+ description: 'Execute tiqora dev-story workflow (config merge, ticket context, challenge gate, branch/run-state, implementation flow)'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:workflow:dev-story`
7
+
8
+ IT IS CRITICAL THAT YOU FOLLOW THESE STEPS - while staying in character as the current agent persona you may have loaded, except when workflow instructions explicitly require loading PM persona for challenge and Developer persona for implementation:
9
+
10
+ <steps CRITICAL="TRUE">
11
+ 1. Always LOAD the FULL @_tiqora/core/tasks/workflow.xml
12
+ 2. READ its entire contents - this is the CORE OS for EXECUTING the specific workflow-config @_tiqora/workflows/4-implementation/dev-story/workflow.yaml
13
+ 3. Pass the yaml path _tiqora/workflows/4-implementation/dev-story/workflow.yaml as 'workflow-config' parameter to the workflow.xml instructions
14
+ 4. Follow workflow.xml instructions EXACTLY as written to process and follow the specific workflow config and its instructions
15
+ 5. Save outputs after EACH section when generating any documents from templates
16
+ </steps>
@@ -0,0 +1,21 @@
1
+ ---
2
+ description: 'Run the tiqora fetch-project-context workflow to gather scoped project/tool context'
3
+ disable-model-invocation: true
4
+ ---
5
+
6
+ Command Trigger: `/tiq:workflow:fetch-project-context`
7
+
8
+ ## Workflow Intent
9
+
10
+ Collect project metadata, tool configuration, active branch details, and relevant prior decisions.
11
+
12
+ ## Required Inputs
13
+
14
+ - `.tiqora.yaml`
15
+ - Current repository state
16
+ - Optional PM ticket id
17
+
18
+ ## Output
19
+
20
+ - Context artifact in `.tiqora/workflows/steps/`
21
+ - Reusable context pointer for subsequent workflow steps
File without changes
@@ -0,0 +1,3 @@
1
+ pm_tool: {{pm_tool}}
2
+ git_host: {{git_host}}
3
+ branch_pattern: '{{branch_pattern}}'