@happyvertical/smrt-projects 0.40.14 → 0.40.15
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 +7 -2
- package/dist/index.js +1 -1
- package/dist/manifest.json +2 -2
- package/dist/smrt-knowledge.json +4 -4
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @happyvertical/smrt-projects
|
|
2
2
|
|
|
3
|
-
Provider-agnostic project management models for the
|
|
3
|
+
Provider-agnostic project management models for the s-m-r-t framework. Manages repositories, issues, pull requests, and project boards with sync support for external providers (GitHub, GitLab, etc.).
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
} from '@happyvertical/smrt-projects';
|
|
20
20
|
|
|
21
21
|
// Track a repository (token resolved from env var at runtime)
|
|
22
|
-
const repos =
|
|
22
|
+
const repos = await RepositoryCollection.create({ db });
|
|
23
23
|
const repo = await repos.create({
|
|
24
24
|
owner: 'org',
|
|
25
25
|
name: 'my-app',
|
|
@@ -95,3 +95,8 @@ await issue.rollback();
|
|
|
95
95
|
- `@happyvertical/repos` -- repository provider SDK
|
|
96
96
|
- `@happyvertical/projects` -- project board provider SDK
|
|
97
97
|
- Peer: `@happyvertical/smrt-svelte`
|
|
98
|
+
|
|
99
|
+
## Contributor guide
|
|
100
|
+
|
|
101
|
+
See [`AGENTS.md`](./AGENTS.md) for package architecture, invariants, validation,
|
|
102
|
+
and contributor guidance.
|