@getdevintern/pm 1.0.0
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/.env.example +95 -0
- package/LICENSE.md +59 -0
- package/README.md +25 -0
- package/dist/index.js +277 -0
- package/package.json +67 -0
- package/prompts/figma/pm/decomposition.txt +38 -0
- package/prompts/figma/pm/story-generation.txt +21 -0
- package/prompts/figma/technical/decomposition.txt +45 -0
- package/prompts/figma/technical/story-generation.txt +27 -0
- package/prompts/log/pm/decomposition.txt +38 -0
- package/prompts/log/pm/story-generation.txt +23 -0
- package/prompts/log/technical/decomposition.txt +41 -0
- package/prompts/log/technical/story-generation.txt +23 -0
- package/prompts/prompt/pm/decomposition.txt +30 -0
- package/prompts/prompt/pm/story-generation.txt +24 -0
- package/prompts/prompt/technical/decomposition.txt +31 -0
- package/prompts/prompt/technical/story-generation.txt +24 -0
package/.env.example
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# @devintern/pm Environment Configuration
|
|
2
|
+
# Copy this file to .devintern-pm/.env and update with your actual values
|
|
3
|
+
|
|
4
|
+
# Backend Configuration
|
|
5
|
+
# Which task backend to use: jira | linear | trello | azure-devops | asana | github | markdown
|
|
6
|
+
TASK_TRACKER=jira
|
|
7
|
+
|
|
8
|
+
# Markdown backend directory (relative to project root, only used when TASK_TRACKER=markdown)
|
|
9
|
+
# MARKDOWN_TASKS_DIR=.devintern-pm/tasks
|
|
10
|
+
|
|
11
|
+
# JIRA Configuration
|
|
12
|
+
# Your JIRA instance URL (without trailing slash)
|
|
13
|
+
JIRA_BASE_URL=https://your-org.atlassian.net
|
|
14
|
+
|
|
15
|
+
# Your JIRA email address
|
|
16
|
+
JIRA_EMAIL=your-email@example.com
|
|
17
|
+
|
|
18
|
+
# Your JIRA API token
|
|
19
|
+
# Create one at: https://id.atlassian.com/manage-profile/security/api-tokens
|
|
20
|
+
JIRA_API_TOKEN=your-api-token
|
|
21
|
+
|
|
22
|
+
# Default JIRA project key (e.g., PROJ, DEV, TEAM)
|
|
23
|
+
JIRA_DEFAULT_PROJECT_KEY=PROJ
|
|
24
|
+
|
|
25
|
+
# Linear Configuration
|
|
26
|
+
# Your Linear API token
|
|
27
|
+
# Create one at: https://linear.app/settings/api
|
|
28
|
+
LINEAR_API_KEY=lin_api_xxxxxxxxxxxx
|
|
29
|
+
|
|
30
|
+
# Default Linear team key (e.g., ENG, PROD)
|
|
31
|
+
LINEAR_DEFAULT_TEAM_KEY=ENG
|
|
32
|
+
|
|
33
|
+
# Trello Configuration
|
|
34
|
+
# Your Trello API key
|
|
35
|
+
# Create one at: https://trello.com/app-key
|
|
36
|
+
TRELLO_API_KEY=your-trello-api-key
|
|
37
|
+
|
|
38
|
+
# Your Trello API token
|
|
39
|
+
# Generate from the app-key page after logging in
|
|
40
|
+
TRELLO_API_TOKEN=your-trello-api-token
|
|
41
|
+
|
|
42
|
+
# Default Trello board ID (optional, will use first board if not set)
|
|
43
|
+
# TRELLO_DEFAULT_BOARD_ID=your-board-id
|
|
44
|
+
|
|
45
|
+
# Default Trello list ID (optional, will use first list if not set)
|
|
46
|
+
# TRELLO_DEFAULT_LIST_ID=your-list-id
|
|
47
|
+
|
|
48
|
+
# Azure DevOps Configuration
|
|
49
|
+
# Your Azure DevOps organization name (e.g., https://dev.azure.com/your-org)
|
|
50
|
+
AZURE_DEVOPS_ORG=your-organization
|
|
51
|
+
|
|
52
|
+
# Your Azure DevOps Personal Access Token
|
|
53
|
+
# Create one at: https://dev.azure.com/your-org/_usersSettings/tokens
|
|
54
|
+
AZURE_DEVOPS_PAT=your-pat-token
|
|
55
|
+
|
|
56
|
+
# Default Azure DevOps project name
|
|
57
|
+
AZURE_DEVOPS_PROJECT=YourProject
|
|
58
|
+
|
|
59
|
+
# Asana Configuration
|
|
60
|
+
# Your Asana Personal Access Token
|
|
61
|
+
# Create one at: https://app.asana.com/0/developer-console
|
|
62
|
+
ASANA_API_TOKEN=your-asana-pat
|
|
63
|
+
|
|
64
|
+
# Default Asana project GID (optional, will use first project if not set)
|
|
65
|
+
# ASANA_DEFAULT_PROJECT_GID=your-project-gid
|
|
66
|
+
|
|
67
|
+
# GitHub Configuration
|
|
68
|
+
# Your GitHub Personal Access Token
|
|
69
|
+
# Create one at: https://github.com/settings/tokens
|
|
70
|
+
GITHUB_TOKEN=ghp_xxxxxxxxxxxx
|
|
71
|
+
|
|
72
|
+
# GitHub repository owner (username or organization)
|
|
73
|
+
GITHUB_OWNER=your-username
|
|
74
|
+
|
|
75
|
+
# GitHub repository name
|
|
76
|
+
GITHUB_REPO=your-repo
|
|
77
|
+
|
|
78
|
+
# Agent Harness Configuration
|
|
79
|
+
# Which AI agent to use: claude-code | opencode (and more in future)
|
|
80
|
+
# Defaults to 'claude-code' if not specified
|
|
81
|
+
AGENT_HARNESS=claude-code
|
|
82
|
+
|
|
83
|
+
# Path to the agent CLI executable (defaults to harness-specific default if not specified)
|
|
84
|
+
# Examples: /path/to/claude, /path/to/opencode, or just the command name if in PATH
|
|
85
|
+
AGENT_CLI_PATH=/path/to/claude
|
|
86
|
+
|
|
87
|
+
# Backward compatibility: CLAUDE_CLI_PATH is still supported and will be used as a fallback
|
|
88
|
+
# CLAUDE_CLI_PATH=/path/to/claude
|
|
89
|
+
|
|
90
|
+
# Optional: License Key
|
|
91
|
+
# You can purchase a license at https://devintern.com/pricing
|
|
92
|
+
# Setting this skips the trial period and activates the product permanently
|
|
93
|
+
# License keys start with PM-****
|
|
94
|
+
# LICENSE_KEY=PM-XXXX-XXXX-XXXX-XXXX
|
|
95
|
+
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Devintern Commercial License Agreement
|
|
2
|
+
|
|
3
|
+
**Version 1.0**
|
|
4
|
+
|
|
5
|
+
This Commercial License Agreement ("Agreement") is a legal agreement between you (either an individual or a single entity, "Licensee") and Daniil Pokrovsky, operating as devintern.com ("Licensor") for the software product identified above, which includes computer software and may include associated media, printed materials, and online or electronic documentation ("Software").
|
|
6
|
+
|
|
7
|
+
## 1. License Types and Grant
|
|
8
|
+
|
|
9
|
+
Subject to the terms and conditions of this Agreement and payment of the applicable license fee, Licensor hereby grants Licensee a perpetual, non-exclusive, non-transferable, non-sublicensable license to install and use the Software.
|
|
10
|
+
|
|
11
|
+
### 1.1 Individual License
|
|
12
|
+
|
|
13
|
+
An Individual License permits a single natural person to install and use the Software on any number of machines they personally control, solely for their own internal business or personal purposes.
|
|
14
|
+
|
|
15
|
+
### 1.2 Team Seat
|
|
16
|
+
|
|
17
|
+
A Team Seat is an Individual License bundled for organizations. Each Team Seat corresponds to one natural person who may use the Software under the terms of Section 1.1. Team Seats are non-transferable between individuals except upon explicit written request to Licensor.
|
|
18
|
+
|
|
19
|
+
## 2. Restrictions
|
|
20
|
+
|
|
21
|
+
Licensee may not:
|
|
22
|
+
|
|
23
|
+
- Distribute, sublicense, rent, lease, lend, sell, or otherwise transfer the Software or any portion thereof to any third party.
|
|
24
|
+
- Reverse engineer, decompile, disassemble, or otherwise attempt to derive the source code of the Software, except to the extent expressly permitted by applicable law.
|
|
25
|
+
- Remove or alter any proprietary notices or labels on the Software.
|
|
26
|
+
- Use the Software to provide a service bureau, time-sharing, or similar service to third parties.
|
|
27
|
+
- Circumvent or disable any license key, activation, or other technical protection measures.
|
|
28
|
+
- Use an Individual License on shared infrastructure or automation pipelines accessible by multiple users (each user requires their own Individual License or Team Seat).
|
|
29
|
+
|
|
30
|
+
## 3. Enterprise Source Access
|
|
31
|
+
|
|
32
|
+
Enterprise customers may be granted access to the Software's source code under a separate written Source Code License Agreement ("SCLA"). Any source code provided under an SCLA remains the exclusive property of Licensor and is subject to strict confidentiality obligations. Source code access does not grant any additional usage rights beyond those expressly stated in the SCLA.
|
|
33
|
+
|
|
34
|
+
## 4. Ownership
|
|
35
|
+
|
|
36
|
+
The Software is licensed, not sold. Licensor retains all right, title, and interest in and to the Software, including all intellectual property rights. This Agreement does not grant Licensee any rights to trademarks, service marks, or logos of Licensor.
|
|
37
|
+
|
|
38
|
+
## 5. Term and Termination
|
|
39
|
+
|
|
40
|
+
This Agreement is perpetual for the version of the Software purchased by Licensee. Licensor may terminate this Agreement immediately if Licensee fails to comply with any term or condition. Upon termination, Licensee must cease all use of the Software and destroy all copies.
|
|
41
|
+
|
|
42
|
+
## 6. Updates and Support
|
|
43
|
+
|
|
44
|
+
This license covers the specific version of the Software purchased. Major version updates may require purchase of a new license at Licensor's discretion. Technical support is provided according to the support tier purchased.
|
|
45
|
+
|
|
46
|
+
## 7. Disclaimer of Warranty
|
|
47
|
+
|
|
48
|
+
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
|
|
49
|
+
|
|
50
|
+
## 8. Limitation of Liability
|
|
51
|
+
|
|
52
|
+
IN NO EVENT SHALL LICENSOR BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE SOFTWARE.
|
|
53
|
+
|
|
54
|
+
## 9. General
|
|
55
|
+
|
|
56
|
+
This Agreement constitutes the entire agreement between the parties concerning the subject matter hereof. If any provision of this Agreement is held invalid, the remainder shall continue in full force and effect.
|
|
57
|
+
|
|
58
|
+
For license purchases, support, and enterprise inquiries:
|
|
59
|
+
**https://devintern.com**
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @getdevintern/pm
|
|
2
|
+
|
|
3
|
+
Automate story and task creation across multiple project management tools with AI. Transform Figma designs, error logs, or requirements into well-structured issues using your preferred AI agent.
|
|
4
|
+
|
|
5
|
+
Supported task trackers: Jira, Linear, Trello, Azure DevOps, Asana, GitHub Issues, Markdown.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
bun add -g @getdevintern/pm
|
|
11
|
+
# or
|
|
12
|
+
npm install -g @getdevintern/pm
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Documentation
|
|
16
|
+
|
|
17
|
+
Full documentation lives at **[devintern.com/docs/pm](https://devintern.com/docs/pm/quick-start)**:
|
|
18
|
+
|
|
19
|
+
- [Quick start](https://devintern.com/docs/pm/quick-start)
|
|
20
|
+
- [Configuration](https://devintern.com/docs/pm/configuration)
|
|
21
|
+
- [Usage](https://devintern.com/docs/pm/usage)
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
See [LICENSE.md](./LICENSE.md).
|