newtype-profile 1.0.58 → 1.0.59

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/dist/cli/index.js CHANGED
@@ -2253,7 +2253,7 @@ var require_picocolors = __commonJS((exports, module) => {
2253
2253
  var require_package = __commonJS((exports, module) => {
2254
2254
  module.exports = {
2255
2255
  name: "newtype-profile",
2256
- version: "1.0.58",
2256
+ version: "1.0.59",
2257
2257
  description: "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
2258
2258
  main: "dist/index.js",
2259
2259
  types: "dist/index.d.ts",
@@ -22180,7 +22180,10 @@ var BuiltinAgentNameSchema = exports_external.enum([
22180
22180
  var BuiltinSkillNameSchema = exports_external.enum([
22181
22181
  "playwright",
22182
22182
  "super-analyst",
22183
- "super-writer"
22183
+ "super-writer",
22184
+ "super-fact-checker",
22185
+ "super-editor",
22186
+ "super-interviewer"
22184
22187
  ]);
22185
22188
  var OverridableAgentNameSchema = exports_external.enum([
22186
22189
  "build",
@@ -13,6 +13,9 @@ export declare const BuiltinSkillNameSchema: z.ZodEnum<{
13
13
  playwright: "playwright";
14
14
  "super-analyst": "super-analyst";
15
15
  "super-writer": "super-writer";
16
+ "super-fact-checker": "super-fact-checker";
17
+ "super-editor": "super-editor";
18
+ "super-interviewer": "super-interviewer";
16
19
  }>;
17
20
  export declare const OverridableAgentNameSchema: z.ZodEnum<{
18
21
  chief: "chief";
@@ -903,6 +906,9 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
903
906
  playwright: "playwright";
904
907
  "super-analyst": "super-analyst";
905
908
  "super-writer": "super-writer";
909
+ "super-fact-checker": "super-fact-checker";
910
+ "super-editor": "super-editor";
911
+ "super-interviewer": "super-interviewer";
906
912
  }>>>;
907
913
  disabled_hooks: z.ZodOptional<z.ZodArray<z.ZodEnum<{
908
914
  "todo-continuation-enforcer": "todo-continuation-enforcer";
@@ -1,5 +1,5 @@
1
1
  import type { CommandDefinition } from "../claude-code-command-loader";
2
- export type BuiltinCommandName = "init-deep" | "ralph-loop" | "cancel-ralph" | "switch" | "super-analyst" | "super-writer" | "memory-consolidate" | "configure-models";
2
+ export type BuiltinCommandName = "init-deep" | "ralph-loop" | "cancel-ralph" | "switch" | "super-analyst" | "super-writer" | "super-fact-checker" | "super-editor" | "super-interviewer" | "memory-consolidate" | "configure-models";
3
3
  export interface BuiltinCommandConfig {
4
4
  disabled_commands?: BuiltinCommandName[];
5
5
  }
package/dist/index.js CHANGED
@@ -50279,7 +50279,10 @@ var BuiltinAgentNameSchema = exports_external.enum([
50279
50279
  var BuiltinSkillNameSchema = exports_external.enum([
50280
50280
  "playwright",
50281
50281
  "super-analyst",
50282
- "super-writer"
50282
+ "super-writer",
50283
+ "super-fact-checker",
50284
+ "super-editor",
50285
+ "super-interviewer"
50283
50286
  ]);
50284
50287
  var OverridableAgentNameSchema = exports_external.enum([
50285
50288
  "build",
@@ -52714,6 +52717,45 @@ $ARGUMENTS
52714
52717
  </user-request>`,
52715
52718
  argumentHint: "<content creation request>"
52716
52719
  },
52720
+ "super-fact-checker": {
52721
+ description: "(builtin) Systematic verification with source credibility assessment",
52722
+ template: `<command-instruction>
52723
+ Use the skill tool to load the super-fact-checker skill, then follow its instructions.
52724
+
52725
+ Call: skill({ name: "super-fact-checker" })
52726
+ </command-instruction>
52727
+
52728
+ <user-request>
52729
+ $ARGUMENTS
52730
+ </user-request>`,
52731
+ argumentHint: "<content or claims to verify>"
52732
+ },
52733
+ "super-editor": {
52734
+ description: "(builtin) 4-layer editing methodology: structure \u2192 paragraph \u2192 sentence \u2192 word",
52735
+ template: `<command-instruction>
52736
+ Use the skill tool to load the super-editor skill, then follow its instructions.
52737
+
52738
+ Call: skill({ name: "super-editor" })
52739
+ </command-instruction>
52740
+
52741
+ <user-request>
52742
+ $ARGUMENTS
52743
+ </user-request>`,
52744
+ argumentHint: "<content to edit>"
52745
+ },
52746
+ "super-interviewer": {
52747
+ description: "(builtin) Dialogue techniques: open questions, 5 whys, Socratic method",
52748
+ template: `<command-instruction>
52749
+ Use the skill tool to load the super-interviewer skill, then follow its instructions.
52750
+
52751
+ Call: skill({ name: "super-interviewer" })
52752
+ </command-instruction>
52753
+
52754
+ <user-request>
52755
+ $ARGUMENTS
52756
+ </user-request>`,
52757
+ argumentHint: "<topic or question to explore>"
52758
+ },
52717
52759
  "memory-consolidate": {
52718
52760
  description: "(builtin) Consolidate daily memory logs into MEMORY.md",
52719
52761
  template: `<command-instruction>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newtype-profile",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "description": "AI Agent Collaboration System for Content Creation - Based on oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",