cairn-work 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 +22 -0
- package/bin/postinstall.js +7 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Cairn
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/cairn-work)
|
|
4
|
+
[](https://github.com/letcairnwork/cairn-cli/discussions)
|
|
5
|
+
[](https://x.com/letcairnwork)
|
|
6
|
+
|
|
3
7
|
Project management for AI agents. Markdown files are the source of truth.
|
|
4
8
|
|
|
5
9
|
## Setup
|
|
@@ -628,6 +632,24 @@ These files are auto-generated during `cairn onboard` and updated with `cairn up
|
|
|
628
632
|
7. Task moves to `review` (if `autonomy: draft`) or `completed` (if `autonomy: execute`)
|
|
629
633
|
8. Human: Reviews artifacts and approves work
|
|
630
634
|
|
|
635
|
+
## Community & Support
|
|
636
|
+
|
|
637
|
+
- **[GitHub Discussions](https://github.com/letcairnwork/cairn-cli/discussions)** — Ask questions, share ideas, show what you're building, and give feedback. This is the best place to connect.
|
|
638
|
+
- **[GitHub Issues](https://github.com/letcairnwork/cairn-cli/issues)** — Bug reports only. For feature requests and questions, use Discussions.
|
|
639
|
+
- **[Twitter/X @letcairnwork](https://x.com/letcairnwork)** — Follow for updates, or drop a quick question.
|
|
640
|
+
|
|
641
|
+
New here? [Introduce yourself in Discussions](https://github.com/letcairnwork/cairn-cli/discussions/categories/introductions) — we'd love to hear what you're working on.
|
|
642
|
+
|
|
643
|
+
## Contributing
|
|
644
|
+
|
|
645
|
+
Contributions are welcome! If you have an idea for a feature or improvement, [start a discussion](https://github.com/letcairnwork/cairn-cli/discussions) first so we can talk through the approach before you invest time in a PR.
|
|
646
|
+
|
|
647
|
+
Found a bug? [Open an issue](https://github.com/letcairnwork/cairn-cli/issues).
|
|
648
|
+
|
|
649
|
+
## What's Next
|
|
650
|
+
|
|
651
|
+
The roadmap is shaped by community feedback. If there's something you'd like to see, [request it in Discussions](https://github.com/letcairnwork/cairn-cli/discussions/categories/ideas).
|
|
652
|
+
|
|
631
653
|
## License
|
|
632
654
|
|
|
633
655
|
MIT
|
package/bin/postinstall.js
CHANGED
|
@@ -51,5 +51,11 @@ try {
|
|
|
51
51
|
log();
|
|
52
52
|
}
|
|
53
53
|
} catch {
|
|
54
|
-
|
|
54
|
+
// fall through
|
|
55
55
|
}
|
|
56
|
+
|
|
57
|
+
log();
|
|
58
|
+
log(' \x1b[36mThanks for installing Cairn!\x1b[0m');
|
|
59
|
+
log(' Join the community: \x1b[4mhttps://github.com/letcairnwork/cairn-cli/discussions\x1b[0m');
|
|
60
|
+
log(' Follow for updates: \x1b[4mhttps://x.com/letcairnwork\x1b[0m');
|
|
61
|
+
log();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cairn-work",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "AI-native project management - optimized CLI for AI agents and humans working together",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"type": "git",
|
|
38
38
|
"url": "https://github.com/letcairnwork/cairn-cli.git"
|
|
39
39
|
},
|
|
40
|
-
"homepage": "https://
|
|
40
|
+
"homepage": "https://cairn.quest",
|
|
41
41
|
"bugs": {
|
|
42
42
|
"url": "https://github.com/letcairnwork/cairn-cli/issues"
|
|
43
43
|
},
|