pikakit 3.9.99 → 3.9.100
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
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
### Transform your AI Agent into a FAANG-level engineering team
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/pikakit)
|
|
8
8
|
[](https://github.com/pikakit/agent-skills)
|
|
9
9
|
[](https://github.com/pikakit/agent-skills)
|
|
10
10
|
[](https://github.com/pikakit/agent-skills)
|
|
@@ -396,7 +396,7 @@ UNLICENSED — See [LICENSE](LICENSE) for details.
|
|
|
396
396
|
|
|
397
397
|
<div align="center">
|
|
398
398
|
|
|
399
|
-
**⚡ PikaKit v3.9.
|
|
399
|
+
**⚡ PikaKit v3.9.100**
|
|
400
400
|
|
|
401
401
|
*Composable Skills · Coordinated Agents · Intelligent Execution*
|
|
402
402
|
|
|
@@ -649,13 +649,24 @@ export async function run(spec) {
|
|
|
649
649
|
|
|
650
650
|
fs.rmSync(tmp, { recursive: true, force: true });
|
|
651
651
|
|
|
652
|
-
//
|
|
652
|
+
// Slash Commands (Workflows) reference table
|
|
653
653
|
stepLine();
|
|
654
|
+
const cmds = [
|
|
655
|
+
["/think", "Brainstorm ideas, analyze tradeoffs"],
|
|
656
|
+
["/plan", "Create implementation plan, task breakdown"],
|
|
657
|
+
["/build", "Build full-stack app with multi-agent coordination"],
|
|
658
|
+
["/fix", "Apply targeted fixes for specific bugs"],
|
|
659
|
+
["/diagnose", "Debug complex issues, find root cause"],
|
|
660
|
+
["/inspect", "Multi-layer code review & validation"],
|
|
661
|
+
["/validate", "Run test suite with coverage report"],
|
|
662
|
+
["/launch", "Deploy to production with zero downtime"],
|
|
663
|
+
["/autopilot", "Autonomous end-to-end pipeline execution"],
|
|
664
|
+
];
|
|
665
|
+
const cmdLines = cmds.map(([cmd, desc]) =>
|
|
666
|
+
` ${c.cyan(cmd.padEnd(12))} ${c.dim(desc)}`
|
|
667
|
+
).join("\n");
|
|
654
668
|
console.log(boxen(
|
|
655
|
-
`${c.cyan("
|
|
656
|
-
` ${c.dim("1.")} Use ${c.cyan("/build")} to create apps with multi-agent coordination\n` +
|
|
657
|
-
` ${c.dim("2.")} Use ${c.cyan("/autopilot")} for autonomous end-to-end execution\n` +
|
|
658
|
-
` ${c.dim("3.")} Use ${c.cyan("/think")} to brainstorm before coding`,
|
|
669
|
+
`${c.cyan("Slash Commands (Workflows)")}\n\n` + cmdLines,
|
|
659
670
|
{
|
|
660
671
|
padding: 1,
|
|
661
672
|
borderColor: "cyan",
|
package/package.json
CHANGED
|
Binary file
|