You can use monkey-typing to augment Int. Expect the optimiser to bail, your willy/boobs to shrink and the world to end in general. Monkey-typing is evil. Don't use it unless you have to.
use MONKEY-TYPING;
augment class Int { method sq(Int:D $i:){ $i * $i } };
my Int $i = 4;
say $i.sq;
You can mixin a role to the object. Note that the object is the object, not the class Int nor the container $i.
my $i = 4 but role :: { method sq(Int:D $i:){ $i * $i } };
say $i.sq;
You can create a free floating method and use .& method call operator.
my method sq(Int:D $i:){ $i * $i };
my $i = 4;
say $i.&sq;
EDIT:
If you really want to break assumptions you can even access private attributes.
class Foo { has $!bar = 'meow'; };
use MONKEY-TYPING;
augment class Foo { method baz { say $!bar } };
Foo.new.baz
# OUTPUT«meow»